diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-03-03 00:01:43 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-03-03 00:01:43 +0000 |
commit | ac2be0137459ad623a698363786a0763fef127fb (patch) | |
tree | a5aa2d44ca1abefe82374201c98585d58605cccd /src/decode.c | |
parent | 4aec92fd6ec5d27eed7d5630a48341dde23b80bc (diff) | |
download | mpd-ac2be0137459ad623a698363786a0763fef127fb.tar.gz mpd-ac2be0137459ad623a698363786a0763fef127fb.tar.xz mpd-ac2be0137459ad623a698363786a0763fef127fb.zip |
fix gcc-2.95 compilation errors
git-svn-id: https://svn.musicpd.org/mpd/trunk@172 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/decode.c')
-rw-r--r-- | src/decode.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/decode.c b/src/decode.c index 52e5075ff..82909fcc7 100644 --- a/src/decode.c +++ b/src/decode.c @@ -199,8 +199,9 @@ void decodeSeek(PlayerControl * pc, AudioFormat * af, DecoderControl * dc, int decoderInit(PlayerControl * pc, Buffer * cb, AudioFormat *af, DecoderControl * dc) { + int pid; decode_pid = &(pc->decode_pid); - int pid = fork(); + pid = fork(); if(pid==0) { /* CHILD */ |