# HG changeset patch # User gpoirier # Date 1222974596 0 # Node ID 24f2b8cc7918160d34eb6d6ba8176e59d087a20a # Parent 47f50599b368ce869fa20d155ef34dae67e27fe1 Remove duplicate "const" qualifier for *matrix. This silences out a warning when compiling with Intel C Compiler. Patch by Diego 'Flameeyes' Petten %flameeyes A gmail P com% diff -r 47f50599b368 -r 24f2b8cc7918 audioconvert.c --- a/audioconvert.c Thu Oct 02 19:05:35 2008 +0000 +++ b/audioconvert.c Thu Oct 02 19:09:56 2008 +0000 @@ -77,7 +77,7 @@ AVAudioConvert *av_audio_convert_alloc(enum SampleFormat out_fmt, int out_channels, enum SampleFormat in_fmt, int in_channels, - const const float *matrix, int flags) + const float *matrix, int flags) { AVAudioConvert *ctx; if (in_channels!=out_channels)