diff src/video/SDL_shape.c @ 4789:a6bc01875d20

Fixed a pair of syntax errors.
author Eli Gottlieb <eligottlieb@gmail.com>
date Sun, 11 Jul 2010 17:11:22 -0400
parents e25ad8d97027
children 6f0bc179771c
line wrap: on
line diff
--- a/src/video/SDL_shape.c	Fri Jul 09 20:24:44 2010 -0400
+++ b/src/video/SDL_shape.c	Sun Jul 11 17:11:22 2010 -0400
@@ -41,7 +41,7 @@
 	if(window == NULL)
 		return SDL_FALSE;
 	else
-		return (SDL_bool)(window->shaper != NULL)
+		return (SDL_bool)(window->shaper != NULL);
 }
 
 /* REQUIRES that bitmap point to a w-by-h bitmap with 1bpp. */