diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2005-03-09 03:30:34 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2005-03-09 03:30:34 +0000 |
commit | 70463a1dacd83c18314a3b8d4d3053c00c7b107c (patch) | |
tree | 7a0c54d845039cca46ab1423ed2c4ec52c0b0d79 | |
parent | c673bc86cd7b16c9d4977f0c42862f44ce8b72d1 (diff) | |
download | mpd-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
-rw-r--r-- | src/main.c | 2 |
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); |