fb: drop two unneeded shadowing variables
authorPeter Hutterer <peter.hutterer@who-t.net>
Thu, 14 Feb 2013 00:06:55 +0000 (10:06 +1000)
committerPeter Hutterer <peter.hutterer@who-t.net>
Fri, 15 Feb 2013 01:58:24 +0000 (11:58 +1000)
fbpict.c: In function 'fbGlyphs':
fbpict.c:188:6: warning: declaration of 'x' shadows a previous local
[-Wshadow]
fbpict.c:111:9: warning: shadowed declaration is here [-Wshadow]
fbpict.c:188:9: warning: declaration of 'y' shadows a previous local
[-Wshadow]
fbpict.c:111:12: warning: shadowed declaration is here [-Wshadow]

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Soren Sandmann <ssp@redhat.com>
Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
fb/fbpict.c

index 2804ff4..b503858 100644 (file)
@@ -185,19 +185,15 @@ fbGlyphs(CARD8 op,
     if (maskFormat) {
        pixman_format_code_t format;
        pixman_box32_t extents;
-       int x, y;
 
        format = maskFormat->format | (maskFormat->depth << 24);
 
        pixman_glyph_get_extents(glyphCache, n_glyphs, pglyphs, &extents);
 
-       x = extents.x1;
-       y = extents.y1;
-
        pixman_composite_glyphs(op, srcImage, dstImage, format,
                                xSrc + srcXoff + xDst, ySrc + srcYoff + yDst,
-                               x, y,
-                               x + dstXoff, y + dstYoff,
+                               extents.x1, extents.y1,
+                               extents.x1 + dstXoff, extents.y1 + dstYoff,
                                extents.x2 - extents.x1,
                                extents.y2 - extents.y1,
                                glyphCache, n_glyphs, pglyphs);