summaryrefslogtreecommitdiffstats
path: root/mp_msg.c
diff options
context:
space:
mode:
Diffstat (limited to 'mp_msg.c')
-rw-r--r--mp_msg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mp_msg.c b/mp_msg.c
index 211ddb2d8c..4fcac21d51 100644
--- a/mp_msg.c
+++ b/mp_msg.c
@@ -21,10 +21,10 @@ void mp_msg_c( int x, const char *format, ... ){
if((x&255)>mp_msg_levels[x>>8]) return; // do not display
va_start(va, format);
if((x&255)<=MSGL_ERR){
- fprintf(stderr,"%%%%%% ");
+// fprintf(stderr,"%%%%%% ");
vfprintf(stderr,format, va);
} else {
- printf("%%%%%% ");
+// printf("%%%%%% ");
vprintf(format, va);
}
va_end(va);