X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4a51df13a5942cd7cc33d2f1bcce308040945be2..8be89720f55b4ceeb2877531ae1602cc7ed947d6:/examples/sthread/sthread-mutex-simple.c diff --git a/examples/sthread/sthread-mutex-simple.c b/examples/sthread/sthread-mutex-simple.c index 76fa009c94..dccec547f7 100644 --- a/examples/sthread/sthread-mutex-simple.c +++ b/examples/sthread/sthread-mutex-simple.c @@ -21,8 +21,8 @@ int main(int argc, char* argv[]) int id[2] = {0, 1}; sthread_t thread1; sthread_t thread2; - sthread_create(&thread1, NULL, thread_fun, (void*)&id[0]); - sthread_create(&thread2, NULL, thread_fun, (void*)&id[1]); + sthread_create(&thread1, NULL, thread_fun, &id[0]); + sthread_create(&thread2, NULL, thread_fun, &id[1]); fprintf(stderr, "All threads are started.\n"); sthread_join(thread1, NULL); sthread_join(thread2, NULL);