From c0d5d92e529f92b6e7492c00d66e629ad4e2385e Mon Sep 17 00:00:00 2001 From: Hans Verkuil Date: Fri, 31 Dec 2010 16:19:06 +0100 Subject: [PATCH] decode_tm6000: fix compile warnings MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit decode_tm6000.c: In function ‘main’: decode_tm6000.c:253: warning: unused variable ‘pktsize’ decode_tm6000.c:253: warning: unused variable ‘cpysize’ Signed-off-by: Hans Verkuil --- utils/decode_tm6000/decode_tm6000.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/decode_tm6000/decode_tm6000.c b/utils/decode_tm6000/decode_tm6000.c index fe9e811..ce3e4f8 100644 --- a/utils/decode_tm6000/decode_tm6000.c +++ b/utils/decode_tm6000/decode_tm6000.c @@ -250,7 +250,7 @@ int main (int argc, char*argv[]) int fd; unsigned int i; unsigned char buf[TM6000_URB_MSG_LEN], img[720*2*480]; - unsigned int cmd, cpysize, pktsize, size, field, block, line, pos=0; + unsigned int cmd, size, field, block, line, pos=0; unsigned long header=0; int linesize=720*2,skip=0; struct v4l2_driver drv; -- 2.7.4