Skip to content

Commit

Permalink
assert: Possibly fixing compiler warning on Android.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jun 15, 2019
1 parent ed8b78d commit 59e510b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SDL_assert.c
Expand Up @@ -378,7 +378,7 @@ SDL_ReportAssertion(SDL_assert_data *data, const char *func, const char *file,
{
case SDL_ASSERTION_ABORT:
SDL_AbortAssertion();
return SDL_ASSERTION_IGNORE; /* shouldn't return, but oh well. */
break; /* shouldn't return, but oh well. */

case SDL_ASSERTION_ALWAYS_IGNORE:
state = SDL_ASSERTION_IGNORE;
Expand Down

0 comments on commit 59e510b

Please sign in to comment.