]> Pileus Git - ~andy/linux/commitdiff
[media] fmdrv_common.c: fix compiler warning
authorHans Verkuil <hverkuil@xs4all.nl>
Sun, 6 Mar 2011 12:30:02 +0000 (09:30 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 22 Mar 2011 07:54:02 +0000 (04:54 -0300)
drivers/media/radio/wl128x/fmdrv_common.c: In function 'recv_tasklet':
drivers/media/radio/wl128x/fmdrv_common.c:274:4: warning: format '%d' expects type 'int', but argument 4 has type 'long unsigned int'

The result of sizeof() should be printed with %zu.

Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/radio/wl128x/fmdrv_common.c

index 12f4c656e8e84605ebe27d5dd6f4654288970f38..64454d39c0ca5429bcc9f4154434ba5328f6928d 100644 (file)
@@ -271,8 +271,8 @@ static void recv_tasklet(unsigned long arg)
        /* Process all packets in the RX queue */
        while ((skb = skb_dequeue(&fmdev->rx_q))) {
                if (skb->len < sizeof(struct fm_event_msg_hdr)) {
-                       fmerr("skb(%p) has only %d bytes"
-                               "atleast need %d bytes to decode\n", skb,
+                       fmerr("skb(%p) has only %d bytes"
+                               "at least need %zu bytes to decode\n", skb,
                                skb->len, sizeof(struct fm_event_msg_hdr));
                        kfree_skb(skb);
                        continue;