Commit b5bfb9f9 authored by Panagiotis Issaris's avatar Panagiotis Issaris

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
parent 200d9a88
...@@ -3547,7 +3547,7 @@ static void correlate_slice_buffered(SnowContext *s, slice_buffer * sb, SubBand ...@@ -3547,7 +3547,7 @@ static void correlate_slice_buffered(SnowContext *s, slice_buffer * sb, SubBand
// START_TIMER // START_TIMER
DWTELEM * line; DWTELEM * line=0; // silence silly "could be used without having been initialized" warning
DWTELEM * prev; DWTELEM * prev;
if (start_y != 0) if (start_y != 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment