summaryrefslogtreecommitdiffstats
path: root/src/glx/drisw_glx.c
diff options
context:
space:
mode:
authorAdam Jackson <[email protected]>2011-04-28 15:35:30 -0400
committerAdam Jackson <[email protected]>2011-05-24 16:43:53 -0400
commitb24f291e429b94ca7de74f8b32279e3a0375cd9c (patch)
treed8061dc1694740ea51d50ba137389bfc01770bdc /src/glx/drisw_glx.c
parentd3b6e8a2b8e3581e07a6dd7277d4d4c6c0407760 (diff)
drisw: dead store removal
Signed-off-by: Adam Jackson <[email protected]>
Diffstat (limited to 'src/glx/drisw_glx.c')
-rw-r--r--src/glx/drisw_glx.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/glx/drisw_glx.c b/src/glx/drisw_glx.c
index 5c7f40cdffa..e8cc4c83e06 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;
}