diff options
author | sebres <sebres@users.sourceforge.net> | 2017-01-09 17:51:46 (GMT) |
---|---|---|
committer | sebres <sebres@users.sourceforge.net> | 2017-01-09 17:51:46 (GMT) |
commit | 87cb0ba76ea6f8e13dd8bb6a25e89fe978a5f09d (patch) | |
tree | fab389afea0c943dbed06c30d3cfe4cf3cfef696 /unix | |
parent | aea2e328303ce78ea26528b14c2c579502ccfe15 (diff) | |
parent | 8fe791a69e3762343bd40b75057777f9f6a87f9b (diff) | |
download | tcl-87cb0ba76ea6f8e13dd8bb6a25e89fe978a5f09d.zip tcl-87cb0ba76ea6f8e13dd8bb6a25e89fe978a5f09d.tar.gz tcl-87cb0ba76ea6f8e13dd8bb6a25e89fe978a5f09d.tar.bz2 |
Merge bug_b87ad7e914
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 315bcf9..6a3766d 100644 --- a/unix/tclUnixTime.c +++ b/unix/tclUnixTime.c @@ -158,7 +158,7 @@ TclpGetWideClicks(void) Tcl_Time time; tclGetTimeProcPtr(&time, tclTimeClientData); - now = (Tcl_WideInt) (time.sec*1000000 + time.usec); + now = ((Tcl_WideInt)time.sec)*1000000 + time.usec; } else { #ifdef MAC_OSX_TCL now = (Tcl_WideInt) (mach_absolute_time() & INT64_MAX); |