V4L/DVB (5116): Remove some warnings when compiling on x86_64
authorMauro Carvalho Chehab <mchehab@infradead.org>
Mon, 22 Jan 2007 01:02:35 +0000 (22:02 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Wed, 21 Feb 2007 15:34:47 +0000 (13:34 -0200)
pvrusb2-encoder.c: In function 'pvr2_encoder_cmd':
pvrusb2-encoder.c:195: warning: format '%u' expects
type 'unsigned int', but argument 3 has type 'long unsigned int'
pvrusb2-encoder.c:205: warning: format '%u' expects
type 'unsigned int', but argument 3 has type 'long unsigned int'
pvrusb2-encoder.c: In function 'pvr2_encoder_vcmd':
pvrusb2-encoder.c:303: warning: format '%u' expects
type 'unsigned int', but argument 3 has type 'long unsigned int'

Acked-by: Mike Isely <isely@isely.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/video/pvrusb2/pvrusb2-encoder.c

index f2ac123..9e43182 100644 (file)
@@ -174,8 +174,8 @@ static int pvr2_encoder_cmd(void *ctxt,
                        PVR2_TRACE_ERROR_LEGS,
                        "Failed to write cx23416 command"
                        " - too many input arguments"
-                       " (was given %u limit %u)",
-                       arg_cnt_send, ARRAY_SIZE(wrData) - 4);
+                       " (was given %u limit %lu)",
+                       arg_cnt_send, (long unsigned) ARRAY_SIZE(wrData) - 4);
                return -EINVAL;
        }
 
@@ -184,8 +184,8 @@ static int pvr2_encoder_cmd(void *ctxt,
                        PVR2_TRACE_ERROR_LEGS,
                        "Failed to write cx23416 command"
                        " - too many return arguments"
-                       " (was given %u limit %u)",
-                       arg_cnt_recv, ARRAY_SIZE(rdData) - 4);
+                       " (was given %u limit %lu)",
+                       arg_cnt_recv, (long unsigned) ARRAY_SIZE(rdData) - 4);
                return -EINVAL;
        }
 
@@ -271,8 +271,8 @@ static int pvr2_encoder_vcmd(struct pvr2_hdw *hdw, int cmd,
                        PVR2_TRACE_ERROR_LEGS,
                        "Failed to write cx23416 command"
                        " - too many arguments"
-                       " (was given %u limit %u)",
-                       args, ARRAY_SIZE(data));
+                       " (was given %u limit %lu)",
+                       args, (long unsigned) ARRAY_SIZE(data));
                return -EINVAL;
        }