aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2002-11-08 14:57:18 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2002-11-08 14:57:18 +0000
commit70d0dcad85eea7ca908dfeb085018ee89b4709e1 (patch)
tree428320b0e345b4a8cad5170bfa4038156bd75680
parent2d4e26522d7c528a64c1569c2463fafa9e961343 (diff)
Notes
-rw-r--r--sys/pci/if_mn.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/pci/if_mn.c b/sys/pci/if_mn.c
index 7181bf8d74b75..b809d6bf89619 100644
--- a/sys/pci/if_mn.c
+++ b/sys/pci/if_mn.c
@@ -1305,15 +1305,15 @@ mn_probe (device_t self)
u_int id = pci_get_devid(self);
if (sizeof (struct m32xreg) != 256) {
- printf("MN: sizeof(struct m32xreg) = %d, should have been 256\n", sizeof (struct m32xreg));
+ printf("MN: sizeof(struct m32xreg) = %zd, should have been 256\n", sizeof (struct m32xreg));
return (ENXIO);
}
if (sizeof (struct f54rreg) != 128) {
- printf("MN: sizeof(struct f54rreg) = %d, should have been 128\n", sizeof (struct f54rreg));
+ printf("MN: sizeof(struct f54rreg) = %zd, should have been 128\n", sizeof (struct f54rreg));
return (ENXIO);
}
if (sizeof (struct f54wreg) != 128) {
- printf("MN: sizeof(struct f54wreg) = %d, should have been 128\n", sizeof (struct f54wreg));
+ printf("MN: sizeof(struct f54wreg) = %zd, should have been 128\n", sizeof (struct f54wreg));
return (ENXIO);
}