diff options
author | David 'Digit' Turner <digit@android.com> | 2010-09-22 14:19:28 +0200 |
---|---|---|
committer | David 'Digit' Turner <digit@android.com> | 2010-09-22 14:19:28 +0200 |
commit | 4e024bb4f5c8aa8b07459f7fbd65c35122127fd1 (patch) | |
tree | ccd5835eef17757d3e1c069e391c415c0135023d /distrib | |
parent | 1d9873b37d2478554d9d678cd410bd3638c8dab3 (diff) | |
download | external_qemu-4e024bb4f5c8aa8b07459f7fbd65c35122127fd1.zip external_qemu-4e024bb4f5c8aa8b07459f7fbd65c35122127fd1.tar.gz external_qemu-4e024bb4f5c8aa8b07459f7fbd65c35122127fd1.tar.bz2 |
Remove compiler warnings when building the emulator.
This forces -Wall during the build. Note that this patch doesn't
remove all warnings, but most of the remaining ones are from upstream anyway.
Change-Id: I8808d8495e99866e156ce5780d2e3c305eab491f
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/sdl-1.2.12/src/video/x11/SDL_x11wm.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/distrib/sdl-1.2.12/src/video/x11/SDL_x11wm.c b/distrib/sdl-1.2.12/src/video/x11/SDL_x11wm.c index fe7e9ac..76706b3 100644 --- a/distrib/sdl-1.2.12/src/video/x11/SDL_x11wm.c +++ b/distrib/sdl-1.2.12/src/video/x11/SDL_x11wm.c @@ -334,7 +334,6 @@ int X11_IconifyWindow(_THIS) static void set_window_pos_nolock(_THIS, int x, int y) { - XWindowAttributes attr; int xNew, yNew; Window child; int xAdjust = X11_wmXAdjust; @@ -394,7 +393,6 @@ void X11_GetWindowPos(_THIS, int *px, int *py) SDL_Lock_EventThread(); { Window child; - Status ret; XTranslateCoordinates( SDL_Display, WMwindow, SDL_Root, 0, 0, px, py, &child ); } |