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 <[email protected]>
---
 fb/fbpict.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/fb/fbpict.c b/fb/fbpict.c
index 2804ff4..b503858 100644
--- a/fb/fbpict.c
+++ b/fb/fbpict.c
@@ -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);
-- 
1.8.1.2

_______________________________________________
[email protected]: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel

Reply via email to