Module: wine Branch: master Commit: 1bfa845a675051afc7d2e985b5c733467bc4fc35 URL: https://source.winehq.org/git/wine.git/?a=commit;h=1bfa845a675051afc7d2e985b...
Author: Daniel Lehman dlehman25@gmail.com Date: Sun May 23 13:20:55 2021 -0700
ntdll: Silence clang warning.
Signed-off-by: Daniel Lehman dlehman25@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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;