From 32c6e7b0278321715730b2f4a0ef992733e096f3 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 9 May 2010 16:16:11 -0700 Subject: [PATCH] Make the compiler even happier --- src/video/SDL_surface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/SDL_surface.c b/src/video/SDL_surface.c index 47b6d2cd3..37740b2d4 100644 --- a/src/video/SDL_surface.c +++ b/src/video/SDL_surface.c @@ -42,7 +42,7 @@ SDL_CreateRGBSurface(Uint32 flags, SDL_Surface *surface; /* The flags are no longer used, make the compiler happy */ - flags; + (void)flags; /* Allocate the surface */ surface = (SDL_Surface *) SDL_calloc(1, sizeof(*surface));