Fix misleading indentation warning in src/Thread.c

Signed-off-by: Jan Claußen <jan.claussen10@web.de>
This commit is contained in:
Jan Claußen 2026-05-14 09:54:10 +02:00
parent a514543641
commit de06928c8b
1 changed files with 2 additions and 2 deletions

View File

@ -360,8 +360,8 @@ int Thread_destroy_evt(evt_type evt)
#else
rc = pthread_mutex_destroy(&evt->mutex);
int rcc = pthread_cond_destroy(&evt->cond);
if (rcc != 0)
rc = rcc;
if (rcc != 0)
rc = rcc;
free(evt);
#endif
FUNC_EXIT_RC(rc);