summaryrefslogtreecommitdiff
path: root/libavcodec/vmnc.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-10-03 17:12:48 +0000
committerDiego Biurrun <diego@biurrun.de>2006-10-03 17:12:48 +0000
commit36c32bdddfe9d19d3ea57c6b1fbe30ca84c3d740 (patch)
tree4c9121aea216399330a7448f303bb29a36076cbb /libavcodec/vmnc.c
parentf8d611285025cae8c933dc1228a2b1db5de5cf85 (diff)
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.c2
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;