From ac2be0137459ad623a698363786a0763fef127fb Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Wed, 3 Mar 2004 00:01:43 +0000 Subject: fix gcc-2.95 compilation errors git-svn-id: https://svn.musicpd.org/mpd/trunk@172 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/decode.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/decode.c') 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 */ -- cgit v1.2.3