aboutsummaryrefslogtreecommitdiff
path: root/pthreads/tests/rwlock2_t.c
diff options
context:
space:
mode:
Diffstat (limited to 'pthreads/tests/rwlock2_t.c')
-rw-r--r--pthreads/tests/rwlock2_t.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pthreads/tests/rwlock2_t.c b/pthreads/tests/rwlock2_t.c
index 8e6ab6da0..4267ddbc8 100644
--- a/pthreads/tests/rwlock2_t.c
+++ b/pthreads/tests/rwlock2_t.c
@@ -50,12 +50,12 @@ int
main()
{
struct timespec abstime = { 0, 0 };
- struct _timeb currSysTime;
+ PTW32_STRUCT_TIMEB currSysTime;
const DWORD NANOSEC_PER_MILLISEC = 1000000;
- _ftime(&currSysTime);
+ PTW32_FTIME(&currSysTime);
- abstime.tv_sec = currSysTime.time;
+ abstime.tv_sec = (long)currSysTime.time;
abstime.tv_nsec = NANOSEC_PER_MILLISEC * currSysTime.millitm;
abstime.tv_sec += 1;