remove deprecated myfprintf wrapper

This shaves another 5-6k because we've removed the paranoid
fflush() calls after every fprintf.  Now we only fflush()
when we need to

git-svn-id: https://svn.musicpd.org/mpd/trunk@4493 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Eric Wong
2006-07-30 23:32:39 +00:00
parent 71fe871908
commit 381d7232a0
10 changed files with 45 additions and 44 deletions

View File

@@ -83,7 +83,7 @@ void flushWarningLog(void)
s = strtok(warningBuffer, "\n");
while (s != NULL) {
myfprintf(stderr, "%s\n", s);
fdprintf(STDERR_FILENO, "%s\n", s);
s = strtok(NULL, "\n");
}