mirror of https://gitee.com/openkylin/qemu.git
sdl: remove unused variable
Variable rec is not used, remove it. Spotted by GCC 4.6.0: CC ui/sdl.o /src/qemu/ui/sdl.c: In function 'sdl_setdata': /src/qemu/ui/sdl.c:90:14: error: variable 'rec' set but not used [-Werror=unused-but-set-variable] Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
320fba2a1f
commit
1b958498ac
6
ui/sdl.c
6
ui/sdl.c
|
@ -87,12 +87,6 @@ static void sdl_update(DisplayState *ds, int x, int y, int w, int h)
|
||||||
|
|
||||||
static void sdl_setdata(DisplayState *ds)
|
static void sdl_setdata(DisplayState *ds)
|
||||||
{
|
{
|
||||||
SDL_Rect rec;
|
|
||||||
rec.x = 0;
|
|
||||||
rec.y = 0;
|
|
||||||
rec.w = real_screen->w;
|
|
||||||
rec.h = real_screen->h;
|
|
||||||
|
|
||||||
if (guest_screen != NULL) SDL_FreeSurface(guest_screen);
|
if (guest_screen != NULL) SDL_FreeSurface(guest_screen);
|
||||||
|
|
||||||
guest_screen = SDL_CreateRGBSurfaceFrom(ds_get_data(ds), ds_get_width(ds), ds_get_height(ds),
|
guest_screen = SDL_CreateRGBSurfaceFrom(ds_get_data(ds), ds_get_width(ds), ds_get_height(ds),
|
||||||
|
|
Loading…
Reference in New Issue