mi: fix shadow warnings
mibitblt.c: In function 'miGetImage': mibitblt.c:617:20: warning: declaration of 'pt' shadows a previous local mibitblt.c:609:17: warning: shadowed declaration is here mispans.c: In function 'miFillUniqueSpanGroup': mispans.c:456:33: warning: declaration of 'i' shadows a previous local mispans.c:382:9: warning: shadowed declaration is here mispans.c:488:17: warning: declaration of 'i' shadows a previous local mispans.c:382:9: warning: shadowed declaration is here Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
1fe30c0067
commit
f02e27e4fc
|
@ -614,7 +614,7 @@ miGetImage(DrawablePtr pDraw, int sx, int sy, int w, int h,
|
|||
if (format == ZPixmap) {
|
||||
if ((((1LL << depth) - 1) & planeMask) != (1LL << depth) - 1) {
|
||||
ChangeGCVal gcv;
|
||||
xPoint pt;
|
||||
xPoint xpt;
|
||||
|
||||
pGC = GetScratchGC(depth, pDraw->pScreen);
|
||||
if (!pGC)
|
||||
|
@ -629,9 +629,9 @@ miGetImage(DrawablePtr pDraw, int sx, int sy, int w, int h,
|
|||
* Clear the pixmap before doing anything else
|
||||
*/
|
||||
ValidateGC((DrawablePtr) pPixmap, pGC);
|
||||
pt.x = pt.y = 0;
|
||||
xpt.x = xpt.y = 0;
|
||||
width = w;
|
||||
(*pGC->ops->FillSpans) ((DrawablePtr) pPixmap, pGC, 1, &pt, &width,
|
||||
(*pGC->ops->FillSpans) ((DrawablePtr) pPixmap, pGC, 1, &xpt, &width,
|
||||
TRUE);
|
||||
|
||||
/* alu is already GXCopy */
|
||||
|
|
|
@ -453,8 +453,6 @@ miFillUniqueSpanGroup(DrawablePtr pDraw, GCPtr pGC, SpanGroup * spanGroup)
|
|||
(int *) realloc(newspans->widths,
|
||||
ysizes[index] * sizeof(int));
|
||||
if (!newpoints || !newwidths) {
|
||||
int i;
|
||||
|
||||
for (i = 0; i < ylength; i++) {
|
||||
free(yspans[i].points);
|
||||
free(yspans[i].widths);
|
||||
|
@ -485,8 +483,6 @@ miFillUniqueSpanGroup(DrawablePtr pDraw, GCPtr pGC, SpanGroup * spanGroup)
|
|||
points = malloc(count * sizeof(DDXPointRec));
|
||||
widths = malloc(count * sizeof(int));
|
||||
if (!points || !widths) {
|
||||
int i;
|
||||
|
||||
for (i = 0; i < ylength; i++) {
|
||||
free(yspans[i].points);
|
||||
free(yspans[i].widths);
|
||||
|
|
Loading…
Reference in New Issue