diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-01-23 09:11:34 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-01-23 09:11:34 (GMT) |
| commit | 7de961e9fab66ecc4e42f1ae1aa9442832728bc5 (patch) | |
| tree | 713c68ff63524c90b5f59d85a3f146f0cb45d145 /unix/tclUnixTime.c | |
| parent | cc89e55f7d04ae79cf7decf0f45dd51e12dbe1bf (diff) | |
| parent | c26df8ae12952ac4cbe9be469b02ff5a5ffb2eea (diff) | |
| download | tcl-7de961e9fab66ecc4e42f1ae1aa9442832728bc5.zip tcl-7de961e9fab66ecc4e42f1ae1aa9442832728bc5.tar.gz tcl-7de961e9fab66ecc4e42f1ae1aa9442832728bc5.tar.bz2 | |
Merge trunk
Diffstat (limited to 'unix/tclUnixTime.c')
| -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 df759d8..d634449 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); |
