summaryrefslogtreecommitdiff
path: root/tests/reuse1.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/reuse1.c')
-rw-r--r--tests/reuse1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/reuse1.c b/tests/reuse1.c
index ae9efe4..2b9cf57 100644
--- a/tests/reuse1.c
+++ b/tests/reuse1.c
@@ -100,7 +100,7 @@ main()
washere = 0;
assert(pthread_create(&t, &attr, func, NULL) == 0);
assert(pthread_join(t, &result) == 0);;
- assert(result == 0);
+ assert((int)(size_t)result == 0);
assert(washere == 1);
last_t = t;
@@ -109,7 +109,7 @@ main()
washere = 0;
assert(pthread_create(&t, &attr, func, (void *) i) == 0);
pthread_join(t, &result);
- assert((int) result == i);
+ assert((int)(size_t) result == i);
assert(washere == 1);
/* thread IDs should be unique */
assert(!pthread_equal(t, last_t));