summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-11-30 02:36:05 +0000
committerrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-11-30 02:36:05 +0000
commit484f4b8f1cdef856720c14ac43cf316bbbd78e54 (patch)
treee11d67fd6b49ba57e104e173c99b494caad4e396 /libvo
parentee47972289df12fc0824309154b23c4f8c159ac1 (diff)
downloadmpv-484f4b8f1cdef856720c14ac43cf316bbbd78e54.tar.bz2
mpv-484f4b8f1cdef856720c14ac43cf316bbbd78e54.tar.xz
more verbosity spam fixes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14066 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/font_load.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/font_load.c b/libvo/font_load.c
index 446abe5678..4131050500 100644
--- a/libvo/font_load.c
+++ b/libvo/font_load.c
@@ -60,7 +60,7 @@ int first=1;
desc=malloc(sizeof(font_desc_t));if(!desc) goto fail_out;
memset(desc,0,sizeof(font_desc_t));
-f=fopen(fname,"rt");if(!f){ mp_msg(MSGT_OSD, MSGL_ERR, "font: can't open file: %s\n",fname); goto fail_out;}
+f=fopen(fname,"rt");if(!f){ mp_msg(MSGT_OSD, MSGL_V, "font: can't open file: %s\n",fname); goto fail_out;}
i = strlen (fname) - 9;
if ((dn = malloc(i+1))){