On Sat, Jul 21, 2012 at 10:54 PM, Randy Dunlap <rdunlap at xenotime.net> wrote: > Fix printk format warnings in drivers/net/wimax/i2400m: > > drivers/net/wimax/i2400m/control.c: warning: format '%zu' expects argument of type 'size_t', but argument 4 has type 'ssize_t' [-Wformat] > drivers/net/wimax/i2400m/control.c: warning: format '%zu' expects argument of type 'size_t', but argument 5 has type 'ssize_t' [-Wformat] > drivers/net/wimax/i2400m/usb-fw.c: warning: format '%zu' expects argument of type 'size_t', but argument 4 has type 'ssize_t' [-Wformat] > > I don't see these warnings on x86. The warnings that are quoted above > are from Geert's kernel build reports. Yeah, while technically they are correct (size_t and ssize_t differ in signedness), they only happen for cris, which has different base types for (s)size_t (size_t = unsigned int, ssize_t = long), which is actually incorrect. Still on my list of things to fix... Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert at linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds