# HG changeset patch # User diego # Date 1193830510 0 # Node ID 0a8f2dc62d01a05bed9a3b99d7fa4dcc008c7e6f # Parent 7d25b8de708d205d8cd257ce80d9ad91b5db4eb3 Remove unused variables, fixes the following warnings: siff.c:187: warning: unused variable 'snddata' siff.c:186: warning: unused variable 'size2' diff -r 7d25b8de708d -r 0a8f2dc62d01 siff.c --- a/siff.c Wed Oct 31 07:27:38 2007 +0000 +++ b/siff.c Wed Oct 31 11:35:10 2007 +0000 @@ -183,8 +183,7 @@ static int siff_read_packet(AVFormatContext *s, AVPacket *pkt) { SIFFContext *c = s->priv_data; - int size, size2; - uint8_t *snddata; + int size; if (c->has_video){ if (c->cur_frame >= c->frames)