diff options
author | Blue Swirl | 2009-07-31 23:16:51 +0200 |
---|---|---|
committer | Blue Swirl | 2009-07-31 23:16:51 +0200 |
commit | 660f11be541813be5f09fbaf44d8e7c6d5a5bbfe (patch) | |
tree | 1d133bdfc69d11fe81e769825adf3f680ee2f91e /sdl.c | |
parent | PPC: convert Uni-north to qdev: also fixes Mac99 machine crash (diff) | |
download | qemu-660f11be541813be5f09fbaf44d8e7c6d5a5bbfe.tar.gz qemu-660f11be541813be5f09fbaf44d8e7c6d5a5bbfe.tar.xz qemu-660f11be541813be5f09fbaf44d8e7c6d5a5bbfe.zip |
Fix Sparse warnings: "Using plain integer as NULL pointer"
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'sdl.c')
-rw-r--r-- | sdl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -53,7 +53,7 @@ static SDL_Cursor *sdl_cursor_hidden; static int absolute_enabled = 0; static int guest_cursor = 0; static int guest_x, guest_y; -static SDL_Cursor *guest_sprite = 0; +static SDL_Cursor *guest_sprite = NULL; static uint8_t allocator; static SDL_PixelFormat host_format; static int scaling_active = 0; |