diff options
author | Wolfgang Denk <wd@denx.de> | 2008-07-14 15:06:35 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-07-14 15:06:35 +0200 |
commit | b64f190b7a34224df09b559ca111eb1b733f00ad (patch) | |
tree | 1b3461f4d02a4872bd3c8bd186d5d58f2288e173 /net/bootp.c | |
parent | f354b73e16a86f9e9085471a830605f74f84ea5d (diff) | |
download | u-boot-imx-b64f190b7a34224df09b559ca111eb1b733f00ad.zip u-boot-imx-b64f190b7a34224df09b559ca111eb1b733f00ad.tar.gz u-boot-imx-b64f190b7a34224df09b559ca111eb1b733f00ad.tar.bz2 |
Fix printf() format issues with sizeof_t types by using %zu
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'net/bootp.c')
-rw-r--r-- | net/bootp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bootp.c b/net/bootp.c index 3c0614c..f48744a 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -313,7 +313,7 @@ BootpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len) Bootp_t *bp; char *s; - debug ("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%d)\n", + debug ("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%zu)\n", src, dest, len, sizeof (Bootp_t)); bp = (Bootp_t *)pkt; |