From b24f291e429b94ca7de74f8b32279e3a0375cd9c Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Thu, 28 Apr 2011 15:35:30 -0400 Subject: [PATCH] drisw: dead store removal Signed-off-by: Adam Jackson --- src/glx/drisw_glx.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/glx/drisw_glx.c b/src/glx/drisw_glx.c index 5c7f40c..e8cc4c8 100644 --- a/src/glx/drisw_glx.c +++ b/src/glx/drisw_glx.c @@ -128,13 +128,11 @@ swrastGetDrawableInfo(__DRIdrawable * draw, Drawable drawable; Window root; - Status stat; unsigned uw, uh, bw, depth; drawable = pdraw->xDrawable; - stat = XGetGeometry(dpy, drawable, &root, - x, y, &uw, &uh, &bw, &depth); + XGetGeometry(dpy, drawable, &root, x, y, &uw, &uh, &bw, &depth); *w = uw; *h = uh; } -- 2.7.4