mirror of https://github.com/eclipse/paho.mqtt.c
Fix misleading indentation warning in src/Thread.c
Signed-off-by: Jan Claußen <jan.claussen10@web.de>
This commit is contained in:
parent
a514543641
commit
de06928c8b
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue