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:
@@ -128,12 +128,13 @@ void printAllInputPluginSuffixes(FILE * fp)
|
||||
plugin = (InputPlugin *) node->data;
|
||||
suffixes = plugin->suffixes;
|
||||
while (suffixes && *suffixes) {
|
||||
myfprintf(fp, "%s ", *suffixes);
|
||||
fprintf(fp, "%s ", *suffixes);
|
||||
suffixes++;
|
||||
}
|
||||
node = node->nextNode;
|
||||
}
|
||||
myfprintf(fp, "\n");
|
||||
fprintf(fp, "\n");
|
||||
fflush(fp);
|
||||
}
|
||||
|
||||
extern InputPlugin mp3Plugin;
|
||||
|
||||
Reference in New Issue
Block a user