diff options
author | Kevin B Kenny <kennykb@acm.org> | 2005-03-15 16:29:50 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2005-03-15 16:29:50 (GMT) |
commit | d1efd01d81c6ab8a8172b42147ecb529524894b3 (patch) | |
tree | c0ceec939fa665f6e04a9c562e0e7a6bd8cd7f6d /win/tclWinTime.c | |
parent | 8fcf4b23507f94dd3ea8de33640f7cf34431a022 (diff) | |
download | tcl-d1efd01d81c6ab8a8172b42147ecb529524894b3.zip tcl-d1efd01d81c6ab8a8172b42147ecb529524894b3.tar.gz tcl-d1efd01d81c6ab8a8172b42147ecb529524894b3.tar.bz2 |
replaced 'long' times with wides, to cope with Win64
Diffstat (limited to 'win/tclWinTime.c')
-rw-r--r-- | win/tclWinTime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinTime.c b/win/tclWinTime.c index 0eb21b3..5696ffc 100644 --- a/win/tclWinTime.c +++ b/win/tclWinTime.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: tclWinTime.c,v 1.14.2.6 2004/10/28 16:06:51 kennykb Exp $ + * RCS: @(#) $Id: tclWinTime.c,v 1.14.2.7 2005/03/15 16:29:55 kennykb Exp $ */ #include "tclWinInt.h" @@ -223,7 +223,7 @@ TclpGetClicks() int TclpGetTimeZone (currentTime) - unsigned long currentTime; + Tcl_WideInt currentTime; { int timeZone; |