From 6e25b78001a127a7c507ef6e55de9fe211d03716 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Tue, 27 Apr 2010 22:45:27 +0000 Subject: [PATCH] Fix weird brace placement. Originally committed as revision 22982 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavdevice/v4l2.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c index b17c2c6bf1..724c014ecf 100644 --- a/libavdevice/v4l2.c +++ b/libavdevice/v4l2.c @@ -169,8 +169,7 @@ static int device_open(AVFormatContext *ctx, uint32_t *capabilities) res = ioctl(fd, VIDIOC_QUERYCAP, &cap); // ENOIOCTLCMD definition only availble on __KERNEL__ - if (res < 0 && errno == 515) - { + if (res < 0 && errno == 515) { av_log(ctx, AV_LOG_ERROR, "QUERYCAP not implemented, probably V4L device but not supporting V4L2\n"); close(fd);