summaryrefslogtreecommitdiffstats
path: root/libmpdemux/tvi_v4l2.c
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-31 18:51:05 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-31 18:51:05 +0000
commit2c7af5e146de97edb8ef752e2fe886e6c50eff55 (patch)
tree85a53ddcf7207b8dba47ed53d1bd5e02e0480ecb /libmpdemux/tvi_v4l2.c
parent1450231f23142e0980f7bf5beb96a94fd3b38e2d (diff)
downloadmpv-2c7af5e146de97edb8ef752e2fe886e6c50eff55.tar.bz2
mpv-2c7af5e146de97edb8ef752e2fe886e6c50eff55.tar.xz
serious bugs - 1l absinth (changed to absinth against cola inflation)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10736 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/tvi_v4l2.c')
-rw-r--r--libmpdemux/tvi_v4l2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpdemux/tvi_v4l2.c b/libmpdemux/tvi_v4l2.c
index b55b301ac0..2b7f83fe57 100644
--- a/libmpdemux/tvi_v4l2.c
+++ b/libmpdemux/tvi_v4l2.c
@@ -658,7 +658,7 @@ static int control(priv_t *priv, int cmd, void *arg)
#endif
return TVI_CONTROL_TRUE;
case TVI_CONTROL_TUN_GET_TUNER:
- mp_msg(MSGT_TV, MSGL_V, "%s: get tuner\n");
+ mp_msg(MSGT_TV, MSGL_V, "%s: get tuner\n",info.short_name);
if (ioctl(priv->video_fd, VIDIOC_G_TUNER, &priv->tuner) < 0) {
mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl get tuner failed: %s\n",
info.short_name, strerror(errno));
@@ -666,7 +666,7 @@ static int control(priv_t *priv, int cmd, void *arg)
}
return TVI_CONTROL_TRUE;
case TVI_CONTROL_TUN_SET_TUNER:
- mp_msg(MSGT_TV, MSGL_V, "%s: set tuner\n");
+ mp_msg(MSGT_TV, MSGL_V, "%s: set tuner\n",info.short_name);
if (ioctl(priv->video_fd, VIDIOC_S_TUNER, &priv->tuner) < 0) {
mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl set tuner failed: %s\n",
info.short_name, strerror(errno));