diff options
author | rpj <rpj> | 2011-03-04 08:03:46 +0000 |
---|---|---|
committer | rpj <rpj> | 2011-03-04 08:03:46 +0000 |
commit | e1de8e3c33257b4e7d6b98767a67414efc31b6c7 (patch) | |
tree | 1942d5037d1cf5077c62f2dce89cf60cd9f96399 /tests/condvar3.c | |
parent | e470da85f7b9426eea03d66086c2822bf29e9b05 (diff) |
Casting fixups
Diffstat (limited to 'tests/condvar3.c')
-rw-r--r-- | tests/condvar3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/condvar3.c b/tests/condvar3.c index 8e7e6eb..47077b3 100644 --- a/tests/condvar3.c +++ b/tests/condvar3.c @@ -126,7 +126,7 @@ main() /* get current system time */ PTW32_FTIME(&currSysTime); - abstime.tv_sec = currSysTime.time; + abstime.tv_sec = (long)currSysTime.time; abstime.tv_nsec = NANOSEC_PER_MILLISEC * currSysTime.millitm; assert(pthread_create(&t[1], NULL, mythread, (void *) 1) == 0); |