From c9fb39ed59643cc73a36b075d57952a3043a073e Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 21 Aug 2011 12:36:55 -0400 Subject: [PATCH] Fixed -pedantic warning in SDL_assert.h. Fixes Bugzilla #1282. --- include/SDL_assert.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_assert.h b/include/SDL_assert.h index a11b3812a..19331232b 100644 --- a/include/SDL_assert.h +++ b/include/SDL_assert.h @@ -99,7 +99,7 @@ typedef enum SDL_ASSERTION_BREAK, /**< Make the debugger trigger a breakpoint. */ SDL_ASSERTION_ABORT, /**< Terminate the program. */ SDL_ASSERTION_IGNORE, /**< Ignore the assert. */ - SDL_ASSERTION_ALWAYS_IGNORE, /**< Ignore the assert from now on. */ + SDL_ASSERTION_ALWAYS_IGNORE /**< Ignore the assert from now on. */ } SDL_assert_state; typedef struct SDL_assert_data