From 2b17d1ac579ee426f631f4c62c9f0cf617a06e51 Mon Sep 17 00:00:00 2001 From: Cyril Brulebois Date: Tue, 1 Mar 2011 17:09:10 -0800 Subject: Fix compiler warning. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Get rid of this with CFLAGS="-Wall -Werror": | CC g80_display.lo | cc1: warnings being treated as errors | g80_display.c: In function ‘G80CrtcSetPClk’: | g80_display.c:216: error: unused variable ‘i’ Signed-off-by: Cyril Brulebois Signed-off-by: Aaron Plattner Reviewed-by: Aaron Plattner Tested-by: Aaron Plattner --- src/g80_display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/g80_display.c b/src/g80_display.c index ae946a8..84e731c 100644 --- a/src/g80_display.c +++ b/src/g80_display.c @@ -213,7 +213,7 @@ G80CrtcSetPClk(xf86CrtcPtr crtc) if(pNv->architecture <= 0xa0 || pNv->architecture == 0xaa || pNv->architecture == 0xac) { - int lo_n, lo_m, hi_n, hi_m, p, i; + int lo_n, lo_m, hi_n, hi_m, p; CARD32 lo = pNv->reg[(0x00614104+headOff)/4]; CARD32 hi = pNv->reg[(0x00614108+headOff)/4]; -- cgit v1.2.3