diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-01-16 12:46:42 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-01-16 12:46:42 (GMT) |
commit | 80d9aa777b98937ed283eb4f984828c328a167e3 (patch) | |
tree | 0d0f259a7729c6f9ec19f3c277513d40cd2b43a7 /unix | |
parent | c745f44e3a8e524803622f190a4c406baeb85a25 (diff) | |
parent | 1ef8141062507aad004bb681df9cb944d7855fd2 (diff) | |
download | tcl-80d9aa777b98937ed283eb4f984828c328a167e3.zip tcl-80d9aa777b98937ed283eb4f984828c328a167e3.tar.gz tcl-80d9aa777b98937ed283eb4f984828c328a167e3.tar.bz2 |
Merge core-8-6-branch. Better deal with patterns regarding hidden files in ZIP filesystem (taken over from upstream androwish)
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); |