diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-03 17:12:48 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-03 17:12:48 +0000 |
commit | 36c32bdddfe9d19d3ea57c6b1fbe30ca84c3d740 (patch) | |
tree | 4c9121aea216399330a7448f303bb29a36076cbb /libavcodec/vmnc.c | |
parent | f8d611285025cae8c933dc1228a2b1db5de5cf85 (diff) | |
download | ffmpeg-36c32bdddfe9d19d3ea57c6b1fbe30ca84c3d740.tar.gz |
Remove unused variables and the corresponding warnings along with them.
Originally committed as revision 6536 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vmnc.c')
-rw-r--r-- | libavcodec/vmnc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vmnc.c b/libavcodec/vmnc.c index 739962a382..07e2b3cf15 100644 --- a/libavcodec/vmnc.c +++ b/libavcodec/vmnc.c @@ -115,7 +115,7 @@ static void load_cursor(VmncContext *c, uint8_t *src) static void put_cursor(uint8_t *dst, int stride, VmncContext *c, int dx, int dy) { - int i, j, t; + int i, j; int w, h, x, y; w = c->cur_w; if(c->width < c->cur_x + c->cur_w) w = c->width - c->cur_x; |