Cosmetics: make a v4l2 error message consistent with r14647.

Originally committed as revision 14664 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2008-08-08 18:14:21 +00:00
parent c57c489753
commit 3241ec1d6f
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}