There's an int ret in the containing scope. Its value never escapes the function, we're just using it to check return values from callees.
Signed-off-by: Adam Jackson <[email protected]> --- exa/exa_render.c | 1 - 1 file changed, 1 deletion(-) diff --git a/exa/exa_render.c b/exa/exa_render.c index 172e2b5..3f332f7 100644 --- a/exa/exa_render.c +++ b/exa/exa_render.c @@ -915,7 +915,6 @@ exaComposite(CARD8 op, if (!pSrc->repeat && xSrc >= 0 && ySrc >= 0 && (xSrc + width <= pSrc->pDrawable->width) && (ySrc + height <= pSrc->pDrawable->height)) { - Bool ret; xDst += pDst->pDrawable->x; yDst += pDst->pDrawable->y; -- 1.8.4.2 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
