diff options
author | Christopher Faylor <me@cgf.cx> | 2005-08-12 02:39:13 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-08-12 02:39:13 +0000 |
commit | 1cd065837c6698b0e3dba6977b47061f8419dfba (patch) | |
tree | a7ff66c35914ad5285d42712669d75ee6c3af394 /winsup/cygwin/thread.cc | |
parent | b4ec1841997ed8ddfba41818e4806513d8da433d (diff) | |
download | cygnal-1cd065837c6698b0e3dba6977b47061f8419dfba.tar.gz cygnal-1cd065837c6698b0e3dba6977b47061f8419dfba.tar.bz2 cygnal-1cd065837c6698b0e3dba6977b47061f8419dfba.zip |
white space
Diffstat (limited to 'winsup/cygwin/thread.cc')
-rw-r--r-- | winsup/cygwin/thread.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/thread.cc b/winsup/cygwin/thread.cc index 095682022..9f4899e91 100644 --- a/winsup/cygwin/thread.cc +++ b/winsup/cygwin/thread.cc @@ -2638,7 +2638,7 @@ pthread_cond_timedwait (pthread_cond_t *cond, pthread_mutex_t *mutex, evaluate microseconds directly in DWORD. */ if (tv.tv_sec > abstime->tv_sec || (tv.tv_sec == abstime->tv_sec - && tv.tv_usec > abstime->tv_nsec / 1000)) + && tv.tv_usec > abstime->tv_nsec / 1000)) return ETIMEDOUT; waitlength = (abstime->tv_sec - tv.tv_sec) * 1000; |