diff options
Diffstat (limited to 'sys/geom/geom_mbr.c')
-rw-r--r-- | sys/geom/geom_mbr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/geom/geom_mbr.c b/sys/geom/geom_mbr.c index 569242d..e2e199d 100644 --- a/sys/geom/geom_mbr.c +++ b/sys/geom/geom_mbr.c @@ -176,7 +176,7 @@ g_mbr_taste(struct g_class *mp, struct g_provider *pp, int insist) if (sizeof(struct dos_partition) != 16) { printf("WARNING: struct dos_partition compiles to %d bytes, should be 16.\n", - sizeof(struct dos_partition)); + (int)sizeof(struct dos_partition)); return (NULL); } g_trace(G_T_TOPOLOGY, "mbr_taste(%s,%s)", mp->name, pp->name); |