From: bones_was_here Date: Fri, 10 Jun 2022 23:11:29 +0000 (+1000) Subject: Fix GCC 11 warns: Con_Shutdown misleading indentation X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=b6f444413e5225afa9ea9cacc333f7c37194a261;p=xonotic%2Fdarkplaces.git Fix GCC 11 warns: Con_Shutdown misleading indentation Signed-off-by: bones_was_here --- diff --git a/console.c b/console.c index cd596418..ac9d3825 100644 --- a/console.c +++ b/console.c @@ -942,7 +942,8 @@ void Con_Shutdown (void) if (con_mutex) Thread_LockMutex(con_mutex); ConBuffer_Shutdown(&con); if (con_mutex) Thread_UnlockMutex(con_mutex); - if (con_mutex) Thread_DestroyMutex(con_mutex);con_mutex = NULL; + if (con_mutex) Thread_DestroyMutex(con_mutex); + con_mutex = NULL; } /*