From b50b81dbc26cc8d001400477fae9095f77c8fbda Mon Sep 17 00:00:00 2001 From: Jean-Paul Saman Date: Sun, 2 Oct 2005 12:22:29 +0000 Subject: [PATCH] Fix compiler warning: 'araw.c:62: warning: static' but never defined' --- modules/codec/araw.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/codec/araw.c b/modules/codec/araw.c index e615f3f17a..fdbaa74630 100644 --- a/modules/codec/araw.c +++ b/modules/codec/araw.c @@ -59,7 +59,9 @@ vlc_module_end(); * Local prototypes *****************************************************************************/ static aout_buffer_t *DecodeBlock( decoder_t *, block_t ** ); +#ifdef ENABLE_SOUT static block_t *EncoderEncode( encoder_t *, aout_buffer_t * ); +#endif struct decoder_sys_t { -- 2.39.2