diff options
author | Ryan C. Gordon <icculus@icculus.org> | 2011-08-21 12:36:55 -0400 |
---|---|---|
committer | Ryan C. Gordon <icculus@icculus.org> | 2011-08-21 12:36:55 -0400 |
commit | 1748eadf6e865df283510ab34a97f885fca16bac (patch) | |
tree | 78f7013cfebd1ae0972ff7d74eecec5a3bad485f /include | |
parent | 19fb523ae06dde507cf6bbaf377bd38829c4781e (diff) |
Fixed -pedantic warning in SDL_assert.h.
Fixes Bugzilla #1282.
Diffstat (limited to 'include')
-rw-r--r-- | include/SDL_assert.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/SDL_assert.h b/include/SDL_assert.h index a11b3812..19331232 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 |