diff input/input.c @ 33844:77bf38091051

Clarify console output when reading optional configuration files.
author diego
date Wed, 27 Jul 2011 13:40:16 +0000
parents 37e215798390
children ef9b6445fc55
line wrap: on
line diff
--- a/input/input.c	Wed Jul 27 13:40:13 2011 +0000
+++ b/input/input.c	Wed Jul 27 13:40:16 2011 +0000
@@ -1581,7 +1581,8 @@
   fd = open(file,O_RDONLY);
 
   if(fd < 0) {
-    mp_msg(MSGT_INPUT,MSGL_V,"Can't open input config file %s: %s\n",file,strerror(errno));
+    mp_msg(MSGT_INPUT, MSGL_V, "Reading optional input config file %s: %s\n",
+           file, strerror(errno));
     return 0;
   }