changeset 22727:82c405252244

Make sure bogus parameter will not be ignored by user.
author voroshil
date Mon, 19 Mar 2007 12:28:53 +0000
parents c07c6ed4902d
children 5e4a2438a0e2
files stream/tv.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/stream/tv.c	Mon Mar 19 11:50:03 2007 +0000
+++ b/stream/tv.c	Mon Mar 19 12:28:53 2007 +0000
@@ -171,7 +171,7 @@
     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