log: oops, brain fart caused a segfault

git-svn-id: https://svn.musicpd.org/mpd/trunk@4538 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Eric Wong 2006-08-03 03:38:39 +00:00
parent 057a483710
commit 31a81e2bcf

View File

@ -102,7 +102,7 @@ void flushWarningLog(void)
s = strtok(warningBuffer, "\n");
while (s != NULL) {
vfprintf(stderr, "%s\n", s);
fprintf(stderr, "%s\n", s);
s = strtok(NULL, "\n");
}