xf86-video-nv: src/g80_display.c

Aaron Plattner aplattner at kemper.freedesktop.org
Tue Mar 1 18:14:46 PST 2011


 src/g80_display.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2b17d1ac579ee426f631f4c62c9f0cf617a06e51
Author: Cyril Brulebois <kibi at debian.org>
Date:   Tue Mar 1 17:09:10 2011 -0800

    Fix compiler warning.
    
    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 <kibi at debian.org>
    Signed-off-by: Aaron Plattner <aplattner at nvidia.com>
    Reviewed-by: Aaron Plattner <aplattner at nvidia.com>
    Tested-by: Aaron Plattner <aplattner at nvidia.com>

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];
 


More information about the xorg-commit mailing list