summaryrefslogtreecommitdiff
path: root/libavdevice
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2008-08-08 18:14:21 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2008-08-08 18:14:21 +0000
commit3241ec1d6f2bddb7416438ad28503df9b203c956 (patch)
tree4d779931f7f90b05be07522c3d54e129fab280fa /libavdevice
parentc57c4897533d6cb1382f1e13aa6cd04ab963e48d (diff)
Cosmetics: make a v4l2 error message consistent with r14647.
Originally committed as revision 14664 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavdevice')
-rw-r--r--libavdevice/v4l2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c
index f1aad38135..0b03640e7d 100644
--- a/libavdevice/v4l2.c
+++ b/libavdevice/v4l2.c
@@ -510,7 +510,7 @@ static int v4l2_read_header(AVFormatContext *s1, AVFormatParameters *ap)
frame_rate_base = ap->time_base.num;
if((unsigned)width > 32767 || (unsigned)height > 32767) {
- av_log(s1, AV_LOG_ERROR, "Wrong size %dx%d\n", width, height);
+ av_log(s1, AV_LOG_ERROR, "Wrong size (%dx%d)\n", width, height);
return -1;
}