From: Inaky Perez-Gonzalez Date: Wed, 2 Sep 2009 22:41:23 +0000 (-0700) Subject: wimax/i2400m: workaround not-so-working %zd printf format X-Git-Tag: master-2009-11-11~169^2~45 X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=59bdc4be0b819173a8f840fc11ccb82d6f2ca64b;p=~andy%2Flinux wimax/i2400m: workaround not-so-working %zd printf format The kernel's %zd modifier does not really work. Use %ld (has to cast ssize_t to long). Signed-off-by: Inaky Perez-Gonzalez --- diff --git a/drivers/net/wimax/i2400m/usb-fw.c b/drivers/net/wimax/i2400m/usb-fw.c index f162c815d50..b59aee0ee64 100644 --- a/drivers/net/wimax/i2400m/usb-fw.c +++ b/drivers/net/wimax/i2400m/usb-fw.c @@ -330,8 +330,8 @@ error_dev_gone: out: if (do_autopm) usb_autopm_put_interface(i2400mu->usb_iface); - d_fnend(8, dev, "(i2400m %p ack %p size %zu) = %zd\n", - i2400m, ack, ack_size, result); + d_fnend(8, dev, "(i2400m %p ack %p size %zu) = %ld\n", + i2400m, ack, ack_size, (long) result); return result; error_exceeded: