From 292fe1c0a4efaabb4224a3f94be4b4d66d156620 Mon Sep 17 00:00:00 2001 From: jhb Date: Wed, 6 Nov 2002 18:55:24 +0000 Subject: [PATCH] Fix warning where sizeof(size_t) != sizeof(int). --- sys/dev/an/if_an.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/an/if_an.c b/sys/dev/an/if_an.c index 9d44500b8ed0..caecdbf1c615 100644 --- a/sys/dev/an/if_an.c +++ b/sys/dev/an/if_an.c @@ -2848,7 +2848,7 @@ flashcard(ifp, l_ioctl) break; case AIROFLPUTBUF: /* Send 32k to card */ if (l_ioctl->len > sizeof(flashbuffer)) { - printf("an%d: Buffer to big, %x %x\n", sc->an_unit, + printf("an%d: Buffer to big, %x %zx\n", sc->an_unit, l_ioctl->len, sizeof(flashbuffer)); return -EINVAL; }