summaryrefslogtreecommitdiffstats
path: root/stream/tv.c
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-19 12:28:53 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-19 12:28:53 +0000
commitac45fd3aacf01d097deffebbe235a74a911d3578 (patch)
tree1f6c54605158c7a8479d67e13145e9c6006e9ac3 /stream/tv.c
parent25cfa15b4b26a1f37977f152e2199d8ad887ce9a (diff)
downloadmpv-ac45fd3aacf01d097deffebbe235a74a911d3578.tar.bz2
mpv-ac45fd3aacf01d097deffebbe235a74a911d3578.tar.xz
Make sure bogus parameter will not be ignored by user.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22745 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/tv.c')
-rw-r--r--stream/tv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/tv.c b/stream/tv.c
index 8fe173c3bb..44661289eb 100644
--- a/stream/tv.c
+++ b/stream/tv.c
@@ -171,7 +171,7 @@ static int norm_from_string(tvi_handle_t *tvh, char* norm)
else if (!strcasecmp(norm, "ntscjp"))
return TV_NORM_NTSCJP;
else {
- mp_msg(MSGT_TV, MSGL_V, "tv.c: norm_from_string(%s): Bogus norm parameter, setting PAL.\n", norm);
+ mp_msg(MSGT_TV, MSGL_WARN, "tv.c: norm_from_string(%s): Bogus norm parameter, setting PAL.\n", norm);
return TV_NORM_PAL;
}
#ifdef HAVE_TV_V4L2