# HG changeset patch # User voroshil # Date 1174307333 0 # Node ID 82c405252244a41eceb6746f594a59367c366e38 # Parent c07c6ed4902de09e51acd894264d77e00af97ad8 Make sure bogus parameter will not be ignored by user. diff -r c07c6ed4902d -r 82c405252244 stream/tv.c --- 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