aboutsummaryrefslogtreecommitdiff
path: root/src/decode.c
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2005-11-19 10:29:20 +0000
committerEric Wong <normalperson@yhbt.net>2005-11-19 10:29:20 +0000
commite8a54efe414d9d25b71cef910b15935bea8c530e (patch)
treefa51a9f7ec6d4f94cc2bbcec820529acf379a049 /src/decode.c
parent4b00c62587dbe0ce131992dcd574ffe323cffa5c (diff)
gcc 2.95 fixes
audioOutput_osx.c, aac_decode.c, mp4_decode.c have NOT been thoroughly checked, but I nevertheless managed to eyeball and fix one incompatibility in audioOutput_osx.c All other files have been build successfully with gcc 2.95 git-svn-id: https://svn.musicpd.org/mpd/trunk@3688 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/decode.c')
-rw-r--r--src/decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decode.c b/src/decode.c
index 9af2c7e4..34904a4c 100644
--- a/src/decode.c
+++ b/src/decode.c
@@ -145,9 +145,9 @@ int calculateCrossFadeChunks(PlayerControl * pc, AudioFormat * af) {
int waitOnDecode(PlayerControl * pc, DecoderControl * dc, OutputBuffer * cb,
int * decodeWaitedOn)
{
+ MpdTag * tag = NULL;
strncpy(pc->currentUrl, pc->utf8url, MAXPATHLEN);
pc->currentUrl[MAXPATHLEN] = '\0';
- MpdTag * tag = NULL;
while(decode_pid>0 && dc->start) my_usleep(10000);