From 84cb23206784697bdf0346464fa917bf8d84a905 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 25 Jun 2014 17:13:43 -0400 Subject: [PATCH] Patched to compile with -Werror=declaration-after-statement --- src/video/x11/SDL_x11events.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video/x11/SDL_x11events.c b/src/video/x11/SDL_x11events.c index 5b1f74ae615d9..77471325f147a 100644 --- a/src/video/x11/SDL_x11events.c +++ b/src/video/x11/SDL_x11events.c @@ -389,12 +389,12 @@ InitiateWindowMove(_THIS, const SDL_WindowData *data, const SDL_Point *point) SDL_VideoData *viddata = (SDL_VideoData *) _this->driverdata; SDL_Window* window = data->window; Display *display = viddata->display; + XEvent evt; /* !!! FIXME: we need to regrab this if necessary when the drag is done. */ X11_XUngrabPointer(display, 0L); X11_XFlush(display); - XEvent evt; evt.xclient.type = ClientMessage; evt.xclient.window = data->xwindow; evt.xclient.message_type = X11_XInternAtom(display, "_NET_WM_MOVERESIZE", True); @@ -415,6 +415,7 @@ InitiateWindowResize(_THIS, const SDL_WindowData *data, const SDL_Point *point, SDL_VideoData *viddata = (SDL_VideoData *) _this->driverdata; SDL_Window* window = data->window; Display *display = viddata->display; + XEvent evt; if (direction < _NET_WM_MOVERESIZE_SIZE_TOPLEFT || direction > _NET_WM_MOVERESIZE_SIZE_LEFT) return; @@ -423,7 +424,6 @@ InitiateWindowResize(_THIS, const SDL_WindowData *data, const SDL_Point *point, X11_XUngrabPointer(display, 0L); X11_XFlush(display); - XEvent evt; evt.xclient.type = ClientMessage; evt.xclient.window = data->xwindow; evt.xclient.message_type = X11_XInternAtom(display, "_NET_WM_MOVERESIZE", True);