From 1bfa845a675051afc7d2e985b5c733467bc4fc35 Mon Sep 17 00:00:00 2001 From: Daniel Lehman Date: Sun, 23 May 2021 13:20:55 -0700 Subject: [PATCH] ntdll: Silence clang warning. Signed-off-by: Daniel Lehman Signed-off-by: Alexandre Julliard --- dlls/ntdll/unix/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/unix/thread.c b/dlls/ntdll/unix/thread.c index 624dff0e5f1..b14b441c094 100644 --- a/dlls/ntdll/unix/thread.c +++ b/dlls/ntdll/unix/thread.c @@ -1013,7 +1013,7 @@ void abort_process( int status ) /*********************************************************************** * exit_thread */ -static void exit_thread( int status ) +static DECLSPEC_NORETURN void exit_thread( int status ) { static void *prev_teb; TEB *teb;