From 4847282eeb7e38e57f157453149e5af93e64b898 Mon Sep 17 00:00:00 2001 From: toaster Date: Sun, 19 May 2024 17:58:39 +0100 Subject: [PATCH] sdl/i_system.cpp: Remove FUNCNORETURN on signal_handler() Fixes ERRORMODE compliation after !2372 --- src/sdl/i_system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl/i_system.cpp b/src/sdl/i_system.cpp index e11be53f0..b252e25f4 100644 --- a/src/sdl/i_system.cpp +++ b/src/sdl/i_system.cpp @@ -429,7 +429,7 @@ static void I_ReportSignal(int num, int coredumped) } #ifndef NEWSIGNALHANDLER -FUNCNORETURN static ATTRNORETURN void signal_handler(INT32 num) +static ATTRNORETURN void signal_handler(INT32 num) { g_in_exiting_signal_handler = true;