Skip to content

Commit

Permalink
V4L/DVB (4485): Fix a warning on PPC64
Browse files Browse the repository at this point in the history
drivers/media/video/pvrusb2/pvrusb2-i2c-cmd-v4l2.c: In function 'set_standard':
drivers/media/video/pvrusb2/pvrusb2-i2c-cmd-v4l2.c:33: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'v4l2_std_id'

Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Mauro Carvalho Chehab committed Sep 26, 2006
1 parent d591b9c commit 40346b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/video/pvrusb2/pvrusb2-i2c-cmd-v4l2.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static void set_standard(struct pvr2_hdw *hdw)
v4l2_std_id vs;
vs = hdw->std_mask_cur;
pvr2_trace(PVR2_TRACE_CHIPS,
"i2c v4l2 set_standard(0x%llx)",(__u64)vs);
"i2c v4l2 set_standard(0x%llx)",(long long unsigned)vs);

pvr2_i2c_core_cmd(hdw,VIDIOC_S_STD,&vs);
}
Expand Down

0 comments on commit 40346b2

Please sign in to comment.