From b4700acee012d0cc27ca55d8d03bbc06c8629880 Mon Sep 17 00:00:00 2001 From: Stéphane Loeuillet Date: Fri, 1 Oct 2004 18:55:14 +0000 Subject: build fixes (those parameters/functions are const in 1.1.6) Original commit message from CVS: build fixes (those parameters/functions are const in 1.1.6) --- ext/speex/gstspeexdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/speex/gstspeexdec.c') diff --git a/ext/speex/gstspeexdec.c b/ext/speex/gstspeexdec.c index ef795dcf..f362c4a1 100644 --- a/ext/speex/gstspeexdec.c +++ b/ext/speex/gstspeexdec.c @@ -397,7 +397,7 @@ speex_dec_chain (GstPad * pad, GstData * data) return; } - dec->mode = speex_mode_list[dec->header->mode]; + dec->mode = (SpeexMode *) speex_mode_list[dec->header->mode]; /* initialize the decoder */ dec->state = speex_decoder_init (dec->mode); -- cgit