diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-08 01:31:24 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-08 01:31:24 +0000 |
commit | 411770715d77358657b7bbaae8676de525fa3a66 (patch) | |
tree | 43b71ba6bd0f0d16b6f13be70a09b1364867c56b /test/pthread/ex7.c | |
parent | 64f699811cbc5b91a2900a21dcf880481ceb88a6 (diff) |
fix warnings on 64bit hosts
Diffstat (limited to 'test/pthread/ex7.c')
-rw-r--r-- | test/pthread/ex7.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pthread/ex7.c b/test/pthread/ex7.c index fadaccaa1..bda2ca9eb 100644 --- a/test/pthread/ex7.c +++ b/test/pthread/ex7.c @@ -25,7 +25,7 @@ event_t main_event; void * test_thread (void *ms_param) { - int status = 0; + unsigned long status = 0; event_t foo; struct timespec time; struct timeval now; |