diff options
author | Kevin B Kenny <kennykb@acm.org> | 2004-10-28 16:06:30 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2004-10-28 16:06:30 (GMT) |
commit | 61617a7891a8266415ac5a14e6dce92693e10c5c (patch) | |
tree | fa5e94f8a83450fe3df0bb0bb427b9b66aba15f6 /win | |
parent | edd30d9489db089dcc47c6110335a1cee9bc6ed5 (diff) | |
download | tcl-61617a7891a8266415ac5a14e6dce92693e10c5c.zip tcl-61617a7891a8266415ac5a14e6dce92693e10c5c.tar.gz tcl-61617a7891a8266415ac5a14e6dce92693e10c5c.tar.bz2 |
added CONST to TclpLocaltime and TclpGmtime param throughout
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinTime.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinTime.c b/win/tclWinTime.c index f428d52..0eb21b3 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.5 2004/06/05 17:25:40 kennykb Exp $ + * RCS: @(#) $Id: tclWinTime.c,v 1.14.2.6 2004/10/28 16:06:51 kennykb Exp $ */ #include "tclWinInt.h" @@ -1103,7 +1103,7 @@ AccumulateSample( Tcl_WideInt perfCounter, struct tm * TclpGmtime( tt ) - TclpTime_t tt; + CONST TclpTime_t tt; { CONST time_t *timePtr = (CONST time_t *) tt; /* Pointer to the number of seconds @@ -1135,7 +1135,7 @@ TclpGmtime( tt ) struct tm * TclpLocaltime( tt ) - TclpTime_t tt; + CONST TclpTime_t tt; { CONST time_t *timePtr = (CONST time_t *) tt; /* Pointer to the number of seconds |