diff options
author | Julien Cristau <jcristau@debian.org> | 2009-01-11 08:34:56 +0100 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2009-01-11 08:54:11 +0100 |
commit | 17c8cb50990a9ad20bbd3f8ce14c149dac9d72ad (patch) | |
tree | ca1f0c241bbc0c536679490a08fc73ae2154d83f /hw/xfree86/dri | |
parent | aec4c0caca41a06832536ba82ba5bcdccf4a0aea (diff) |
xfree86: don't mix declarations and code
Diffstat (limited to 'hw/xfree86/dri')
-rw-r--r-- | hw/xfree86/dri/xf86dri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/dri/xf86dri.c b/hw/xfree86/dri/xf86dri.c index bd040a178..902fe1264 100644 --- a/hw/xfree86/dri/xf86dri.c +++ b/hw/xfree86/dri/xf86dri.c @@ -406,8 +406,8 @@ ProcXF86DRIDestroyDrawable( { REQUEST(xXF86DRIDestroyDrawableReq); DrawablePtr pDrawable; - REQUEST_SIZE_MATCH(xXF86DRIDestroyDrawableReq); int rc; + REQUEST_SIZE_MATCH(xXF86DRIDestroyDrawableReq); if (stuff->screen >= screenInfo.numScreens) { client->errorValue = stuff->screen; |