Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Make the compiler even happier
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed May 9, 2010
1 parent 8294c67 commit 32c6e7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/SDL_surface.c
Expand Up @@ -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));
Expand Down

0 comments on commit 32c6e7b

Please sign in to comment.