diff options
Diffstat (limited to 'unix')
| -rw-r--r-- | unix/tclUnixTime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixTime.c b/unix/tclUnixTime.c index 85a31e1..c6a24d1 100644 --- a/unix/tclUnixTime.c +++ b/unix/tclUnixTime.c @@ -187,7 +187,7 @@ TclpGetWideClicks(void) now = ((Tcl_WideInt)time.sec)*1000000 + time.usec; } else { #ifdef MAC_OSX_TCL - now = (Tcl_WideInt) (mach_absolute_time() & INT64_MAX); + now = (Tcl_WideInt)(mach_absolute_time() & INT64_MAX); #else #error Wide high-resolution clicks not implemented on this platform #endif |
