Silence GCC when incorrectly complaining that the "line" variable could be used

without having been initialized.

Originally committed as revision 7711 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Panagiotis Issaris 2007-01-25 15:23:22 +00:00
parent 200d9a885b
commit b5bfb9f9de
1 changed files with 1 additions and 1 deletions

View File

@ -3547,7 +3547,7 @@ static void correlate_slice_buffered(SnowContext *s, slice_buffer * sb, SubBand
// START_TIMER
DWTELEM * line;
DWTELEM * line=0; // silence silly "could be used without having been initialized" warning
DWTELEM * prev;
if (start_y != 0)