Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f58db9590fc56fe519d6919abae7a70ec17b4d0e
Commit:     f58db9590fc56fe519d6919abae7a70ec17b4d0e
Parent:     3eaeef57423b5f9571e7524373ec079f583b2113
Author:     Mauro Carvalho Chehab <[EMAIL PROTECTED]>
AuthorDate: Mon Aug 27 12:05:18 2007 -0300
Committer:  Mauro Carvalho Chehab <[EMAIL PROTECTED]>
CommitDate: Tue Oct 9 22:07:09 2007 -0300

    V4L/DVB (6111): Fix a warning when compiling on x86_64
    
    tcm825x.c: In function 'ioctl_try_fmt_cap':
    tcm825x.c:639: warning: format '%d' expects type 'int', but argument 4
                                            has type 'long unsigned int'
    
    Signed-off-by: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
---
 drivers/media/video/tcm825x.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/media/video/tcm825x.c b/drivers/media/video/tcm825x.c
index 4b973b0..3a139f2 100644
--- a/drivers/media/video/tcm825x.c
+++ b/drivers/media/video/tcm825x.c
@@ -635,8 +635,8 @@ static int ioctl_try_fmt_cap(struct v4l2_int_device *s,
        struct v4l2_pix_format *pix = &f->fmt.pix;
 
        isize = tcm825x_find_size(s, pix->width, pix->height);
-       dev_dbg(&sensor->i2c_client->dev, "isize = %d num_capture = %d\n",
-               isize, TCM825X_NUM_CAPTURE_FORMATS);
+       dev_dbg(&sensor->i2c_client->dev, "isize = %d num_capture = %lu\n",
+               isize, (unsigned long)TCM825X_NUM_CAPTURE_FORMATS);
 
        pix->width = tcm825x_sizes[isize].width;
        pix->height = tcm825x_sizes[isize].height;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to