From 59e510b0b664886171259141c1352cf462453942 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 14 Jun 2019 21:39:51 -0400 Subject: [PATCH] assert: Possibly fixing compiler warning on Android. --- src/SDL_assert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SDL_assert.c b/src/SDL_assert.c index b55c5a8da..0bab1f7ea 100644 --- a/src/SDL_assert.c +++ b/src/SDL_assert.c @@ -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;