fix an error message

git-svn-id: https://svn.musicpd.org/mpd/trunk@3043 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Warren Dukes 2005-03-09 03:29:30 +00:00
parent 4c7c6ca4a6
commit c673bc86cd
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ void killMpdFromPidFile(char * cmd) {
if(!fp) {
ERROR("unable to open %s \"%s\" (config line %i): %s\n",
CONF_PID_FILE, pidFileParam->value,
pidFileParam->line);
pidFileParam->line, strerror(errno));
exit(EXIT_FAILURE);
}
if(fscanf(fp, "%i", &pid) != 1) {