From 860f8bda714da8724777e47829e751585b4ca288 Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Tue, 13 Apr 2004 19:08:38 +0000 Subject: ok, rework myfprintf so it uses write() and never use any file stream print functions. this way we can always know wtf is going on! also, remove some places where we were using fprintf and printf instead of myfprintf git-svn-id: https://svn.musicpd.org/mpd/trunk@734 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/tag.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/tag.c') diff --git a/src/tag.c b/src/tag.c index c4623bb58..23128ae16 100644 --- a/src/tag.c +++ b/src/tag.c @@ -51,7 +51,6 @@ #include "mp4ff/mp4ff.h" #endif -/* DON'T BLOCK SIGNALS IN THIS FUNCTION, called by writeDirectoryDB() */ void printMpdTag(FILE * fp, MpdTag * tag) { if(tag->artist) myfprintf(fp,"Artist: %s\n",tag->artist); if(tag->album) myfprintf(fp,"Album: %s\n",tag->album); -- cgit v1.2.3