This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/v4l-utils.git tree:
Subject: libv4l1: Fix wrong buffer being passed into VIDIOC_G_FBUF call Author: Hans de Goede <[email protected]> Date: Tue Jun 1 13:07:49 2010 +0200 Signed-off-by: Hans de Goede <[email protected]> lib/libv4l1/libv4l1.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- http://git.linuxtv.org/v4l-utils.git?a=commitdiff;h=cad1121edd0bf1981064108401da93250a0aa3b8 diff --git a/lib/libv4l1/libv4l1.c b/lib/libv4l1/libv4l1.c index fa624b6..75b823c 100644 --- a/lib/libv4l1/libv4l1.c +++ b/lib/libv4l1/libv4l1.c @@ -808,7 +808,7 @@ int v4l1_ioctl(int fd, unsigned long int request, ...) struct video_buffer *buffer = arg; struct v4l2_framebuffer fbuf = { 0, }; - result = v4l2_ioctl(fd, VIDIOC_G_FBUF, buffer); + result = v4l2_ioctl(fd, VIDIOC_G_FBUF, &fbuf); if (result < 0) break; _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
