summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixTime.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2024-08-06 11:12:47 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2024-08-06 11:12:47 (GMT)
commitedf0c8df14d96bbfe42cc2d674c91af23afedec4 (patch)
tree10b477c4f96989d84a5453310c9715aaef2b3413 /unix/tclUnixTime.c
parent148a93eca5418958ee6793d228cc0ce59048c703 (diff)
parent9e80e8982f127a73b05f668b5e534b3a2c901582 (diff)
downloadtcl-edf0c8df14d96bbfe42cc2d674c91af23afedec4.zip
tcl-edf0c8df14d96bbfe42cc2d674c91af23afedec4.tar.gz
tcl-edf0c8df14d96bbfe42cc2d674c91af23afedec4.tar.bz2
merge 8.6
Diffstat (limited to 'unix/tclUnixTime.c')
-rw-r--r--unix/tclUnixTime.c2
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