# HG changeset patch # User cehoyos # Date 1311677422 0 # Node ID 35a9729e2eba9c22d184a60417e5a4bb7bb12a9b # Parent aeba53d139c92e70e2c468d5a9797dcd5bed2b2d Fix verbosity level broken in r33917. diff -r aeba53d139c9 -r 35a9729e2eba codec-cfg.c --- a/codec-cfg.c Mon Jul 25 23:30:24 2011 +0000 +++ b/codec-cfg.c Tue Jul 26 10:50:22 2011 +0000 @@ -558,7 +558,7 @@ mp_msg(MSGT_CODECCFG, MSGL_V, "Reading %s: ", cfgfile); if ((fp = fopen(cfgfile, "r")) == NULL) { - mp_msg(MSGT_CODECCFG, MSGL_FATAL, MSGTR_CantOpenFileError, cfgfile, strerror(errno)); + mp_msg(MSGT_CODECCFG, MSGL_V, MSGTR_CantOpenFileError, cfgfile, strerror(errno)); return 0; }