X-Git-Url: http://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=tests%2Fapi.h;h=6d7190086b1babef4610fd6ca349a1b096c78687;hp=9746ea4389cd945cec76eb75043d9732b54ed64f;hb=665eb3efcc4557deddb70ecce68ec3b918ae9c5e;hpb=3227f2cc42089c1d652e80cd755d0bb23ec8a551 diff --git a/tests/api.h b/tests/api.h index 9746ea4..6d71900 100644 --- a/tests/api.h +++ b/tests/api.h @@ -156,8 +156,8 @@ static int __smp_thread_id(void) return i; } spin_unlock(&__thread_id_map_mutex); - fprintf(stderr, "smp_thread_id: Rogue thread, id: %d(%#x)\n", - (int)tid, (int)tid); + fprintf(stderr, "smp_thread_id: Rogue thread, id: %lu(%#lx)\n", + (unsigned long) tid, (unsigned long) tid); exit(-1); } @@ -206,8 +206,8 @@ static void *wait_thread(thread_id_t tid) break; } if (i >= NR_THREADS){ - fprintf(stderr, "wait_thread: bad tid = %d(%#x)\n", - (int)tid, (int)tid); + fprintf(stderr, "wait_thread: bad tid = %lu(%#lx)\n", + (unsigned long)tid, (unsigned long)tid); exit(-1); } if (pthread_join(tid, &vp) != 0) {