diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-30 12:17:23 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-30 12:17:23 +0000 |
commit | 98a860905e777299aeb3507a08d2ad4864976d9a (patch) | |
tree | 3540f1f02c8726d626620222d1cd16f769996570 /libvo | |
parent | 8792b72b1ef1166e9e9ed7ecda8c960607d4db7c (diff) |
Remove unused variable, fixes the warning:
vo_xvr100.c:139: warning: unused variable 'i'
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25552 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/vo_xvr100.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_xvr100.c b/libvo/vo_xvr100.c index ef20b64745..d838bc1e98 100644 --- a/libvo/vo_xvr100.c +++ b/libvo/vo_xvr100.c @@ -136,7 +136,7 @@ static uint32_t pfb_colorkey; void pfb_overlay_on() { - int i, h_inc, h_step, ecp_div; + int h_inc, h_step, ecp_div; pfb_vregs[PFB_CLOCK_CNTL_INDEX] = (pfb_vregs[PFB_CLOCK_CNTL_INDEX] & ~0x0000003f) | 0x00000008; ecp_div = (pfb_vregs[PFB_CLOCK_CNTL_DATA] >> 8) & 0x3; |