Commit 10cf5add authored by Eric Wong's avatar Eric Wong

main.c: fix gcc-2.95 compilation problem

git-svn-id: https://svn.musicpd.org/mpd/trunk@4251 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 9b06d2cd
......@@ -478,6 +478,7 @@ void killFromPidFile(char * cmd, int killOption) {
/*char buf[32];
struct stat st_cmd;
struct stat st_exe;*/
FILE * fp;
ConfigParam * pidFileParam = parseConfigFilePath(CONF_PID_FILE, 0);
int pid;
......@@ -486,7 +487,7 @@ void killFromPidFile(char * cmd, int killOption) {
exit(EXIT_FAILURE);
}
FILE * fp = fopen(pidFileParam->value,"r");
fp = fopen(pidFileParam->value,"r");
if(!fp) {
ERROR("unable to open %s \"%s\": %s\n",
CONF_PID_FILE, pidFileParam->value,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment