Make the compiler even happier

This commit is contained in:
Sam Lantinga 2010-05-09 16:16:11 -07:00
parent 2a8171b8b7
commit 76cf0cd0c0

View file

@ -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));