summaryrefslogtreecommitdiffstats
path: root/Gui/mplayer/mw.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-12-15 01:22:24 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-12-15 01:22:24 +0000
commit5141ea8aefeb0f6759836a9114408d80668f8e74 (patch)
treeef7a92926b83496b0d3a4208eb822010cab83e69 /Gui/mplayer/mw.c
parent85f6dfb5e8eb79c04f789914898c407a72e1a623 (diff)
downloadmpv-5141ea8aefeb0f6759836a9114408d80668f8e74.tar.bz2
mpv-5141ea8aefeb0f6759836a9114408d80668f8e74.tar.xz
printf --> mp_msg conversion, less verbosity
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14157 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui/mplayer/mw.c')
-rw-r--r--Gui/mplayer/mw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Gui/mplayer/mw.c b/Gui/mplayer/mw.c
index b2c8f9615d..f7edb6b292 100644
--- a/Gui/mplayer/mw.c
+++ b/Gui/mplayer/mw.c
@@ -551,7 +551,7 @@ void mplDandDHandler(int num,char** files)
if(stat(str,&buf) == 0 && S_ISDIR(buf.st_mode) == 0) {
/* this is not a directory so try to play it */
- printf("Received D&D %s\n",str);
+ mp_msg( MSGT_GPLAYER,MSGL_V,"Received D&D %s\n",str );
/* check if it is a subtitle file */
{
@@ -590,7 +590,7 @@ void mplDandDHandler(int num,char** files)
}
gtkSet(gtkAddPlItem,0,(void*)item);
} else {
- printf("Received not a file: %s !\n",str);
+ mp_msg( MSGT_GPLAYER,MSGL_WARN,MSGTR_NotAFile,str );
}
free( str );
}