diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-07-30 23:32:39 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2006-07-30 23:32:39 +0000 |
commit | 381d7232a0d63c0a145fae5e2c40e577ff2f44f1 (patch) | |
tree | 6a9191774f3c797a77ef7d85dbe71564ff252ada /src/song.c | |
parent | 71fe871908db4317e5afd4308a044909a1799c9e (diff) | |
download | mpd-381d7232a0d63c0a145fae5e2c40e577ff2f44f1.tar.gz mpd-381d7232a0d63c0a145fae5e2c40e577ff2f44f1.tar.xz mpd-381d7232a0d63c0a145fae5e2c40e577ff2f44f1.zip |
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
Diffstat (limited to '')
-rw-r--r-- | src/song.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/song.c b/src/song.c index a601d5f67..62e699839 100644 --- a/src/song.c +++ b/src/song.c @@ -170,17 +170,18 @@ void writeSongInfoFromList(FILE * fp, SongList * list) { ListNode *tempNode = list->firstNode; - myfprintf(fp, "%s\n", SONG_BEGIN); + fprintf(fp, "%s\n", SONG_BEGIN); while (tempNode != NULL) { - myfprintf(fp, "%s%s\n", SONG_KEY, tempNode->key); + fprintf(fp, "%s%s\n", SONG_KEY, tempNode->key); + fflush(fp); printSongInfo(fileno(fp), (Song *) tempNode->data); - myfprintf(fp, "%s%li\n", SONG_MTIME, + fprintf(fp, "%s%li\n", SONG_MTIME, (long)((Song *) tempNode->data)->mtime); tempNode = tempNode->nextNode; } - myfprintf(fp, "%s\n", SONG_END); + fprintf(fp, "%s\n", SONG_END); } static void insertSongIntoList(SongList * list, ListNode ** nextSongNode, |