tests: add missing unsigned long casts to pthread_self()
[urcu.git] / tests / test_urcu_hash_rw.c
index f30207d000ca039f0c3394b0fefce3bbb41aecb7..b6290e9c38235c2e8b43d7291dd8d9573ce19af9 100644 (file)
@@ -111,7 +111,7 @@ void *test_hash_rw_thr_reader(void *_count)
                        "reader", (unsigned long) pthread_self(),
                        (unsigned long) gettid());
        printf_verbose("readid : %lx, lookupfail %lu, lookupok %lu\n",
-                       pthread_self(), URCU_TLS(lookup_fail),
+                       (unsigned long) pthread_self(), URCU_TLS(lookup_fail),
                        URCU_TLS(lookup_ok));
        return ((void*)1);
 
This page took 0.022885 seconds and 4 git commands to generate.