aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2005-03-09 03:30:34 +0000
committerWarren Dukes <warren.dukes@gmail.com>2005-03-09 03:30:34 +0000
commit70463a1dacd83c18314a3b8d4d3053c00c7b107c (patch)
tree7a0c54d845039cca46ab1423ed2c4ec52c0b0d79 /src/main.c
parentc673bc86cd7b16c9d4977f0c42862f44ce8b72d1 (diff)
downloadmpd-70463a1dacd83c18314a3b8d4d3053c00c7b107c.tar.gz
mpd-70463a1dacd83c18314a3b8d4d3053c00c7b107c.tar.xz
mpd-70463a1dacd83c18314a3b8d4d3053c00c7b107c.zip
don't print out config line in error message about pid file missing
git-svn-id: https://svn.musicpd.org/mpd/trunk@3044 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index f1a5a89b0..626bf36a2 100644
--- a/src/main.c
+++ b/src/main.c
@@ -393,7 +393,7 @@ void killMpdFromPidFile(char * cmd) {
FILE * fp = fopen(pidFileParam->value,"r");
if(!fp) {
- ERROR("unable to open %s \"%s\" (config line %i): %s\n",
+ ERROR("unable to open %s \"%s\": %s\n",
CONF_PID_FILE, pidFileParam->value,
pidFileParam->line, strerror(errno));
exit(EXIT_FAILURE);