pthread: fix a type mismatch warning

pull/2629/head
Anton Maklakov 2018-09-25 14:10:03 +08:00
rodzic 129d32772e
commit 92caddb501
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -22,7 +22,7 @@ TEST_CASE("pthread create join", "[pthread]")
volatile int num = 7;
volatile bool attr_init = false;
void *thread_rval = NULL;
pthread_t new_thread = NULL;
pthread_t new_thread = (pthread_t)NULL;
pthread_attr_t attr;
if (TEST_PROTECT()) {