summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorcehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-03 10:57:49 +0000
committercehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-03 10:57:49 +0000
commit9a4832f06695874c19dd44af8c162cf4712631c5 (patch)
treedee5dad5a4849c6619dfbe092e2e798d071ce5ae /stream
parent3d0271ef4094f59a48f9c0411dc76af4ac88c177 (diff)
downloadmpv-9a4832f06695874c19dd44af8c162cf4712631c5.tar.bz2
mpv-9a4832f06695874c19dd44af8c162cf4712631c5.tar.xz
Added missing newline.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23999 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r--stream/tvi_v4l2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/tvi_v4l2.c b/stream/tvi_v4l2.c
index 31fa1434da..d808cc6838 100644
--- a/stream/tvi_v4l2.c
+++ b/stream/tvi_v4l2.c
@@ -664,7 +664,7 @@ static void *vbi_grabber(void *data)
while (!priv->vbi_shutdown){
bytes=read(priv->vbi_fd,buf,tsp.bufsize);
if (bytes!=tsp.bufsize){
- mp_msg(MSGT_TV,MSGL_WARN,"vbi: expecting bytes: %d, got: %d",tsp.bufsize,bytes);
+ mp_msg(MSGT_TV,MSGL_WARN,"vbi: expecting bytes: %d, got: %d\n",tsp.bufsize,bytes);
break;
}
seq=*(int*)(buf+bytes-4);