diff options
author | kennykb <kennykb@noemail.net> | 2005-03-15 16:29:50 (GMT) |
---|---|---|
committer | kennykb <kennykb@noemail.net> | 2005-03-15 16:29:50 (GMT) |
commit | 160cda07ad378f09512c87d928f617ee95141c5d (patch) | |
tree | c0ceec939fa665f6e04a9c562e0e7a6bd8cd7f6d /unix/tclUnixTime.c | |
parent | 6044ec62cd3fffa58df217e83ef5589a9923c49e (diff) | |
download | tcl-160cda07ad378f09512c87d928f617ee95141c5d.zip tcl-160cda07ad378f09512c87d928f617ee95141c5d.tar.gz tcl-160cda07ad378f09512c87d928f617ee95141c5d.tar.bz2 |
replaced 'long' times with wides, to cope with Win64
FossilOrigin-Name: d41af48065dcbcbd65ee57cb1b1a013bfa8abad8
Diffstat (limited to 'unix/tclUnixTime.c')
-rw-r--r-- | unix/tclUnixTime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixTime.c b/unix/tclUnixTime.c index 0e0268f..da03440 100644 --- a/unix/tclUnixTime.c +++ b/unix/tclUnixTime.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixTime.c,v 1.15.2.3 2004/10/28 16:06:50 kennykb Exp $ + * RCS: @(#) $Id: tclUnixTime.c,v 1.15.2.4 2005/03/15 16:29:54 kennykb Exp $ */ #include "tclInt.h" @@ -131,7 +131,7 @@ TclpGetClicks() int TclpGetTimeZone (currentTime) - unsigned long currentTime; + Tcl_WideInt currentTime; { /* * We prefer first to use the time zone in "struct tm" if the |