diff options
| author | hobbs <hobbs> | 2003-01-14 17:51:16 (GMT) |
|---|---|---|
| committer | hobbs <hobbs> | 2003-01-14 17:51:16 (GMT) |
| commit | a351d3c9741449e963e5283d8e1513781babebb5 (patch) | |
| tree | fcca8f2c996fb4403a0538ac8a3d5b8a85c33fa1 /generic/tclClock.c | |
| parent | 0a23260d87054afda22406061703e91f5e78b26f (diff) | |
| download | tcl-a351d3c9741449e963e5283d8e1513781babebb5.zip tcl-a351d3c9741449e963e5283d8e1513781babebb5.tar.gz tcl-a351d3c9741449e963e5283d8e1513781babebb5.tar.bz2 | |
* generic/tclClock.c (FormatClock): corrected typo that
incorrectly conditionally defined savedTZEnv and savedTimeZone.
Diffstat (limited to 'generic/tclClock.c')
| -rw-r--r-- | generic/tclClock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclClock.c b/generic/tclClock.c index 774f72a..2d09974 100644 --- a/generic/tclClock.c +++ b/generic/tclClock.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclClock.c,v 1.17 2003/01/14 02:06:11 mdejong Exp $ + * RCS: @(#) $Id: tclClock.c,v 1.18 2003/01/14 17:51:16 hobbs Exp $ */ #include "tcl.h" @@ -263,7 +263,7 @@ FormatClock(interp, clockVal, useGMT, format) char *p; int result; time_t tclockVal; -#if defined(HAVE_TM_ZONE) && !defined(WIN32) +#if !defined(HAVE_TM_ZONE) && !defined(WIN32) int savedTimeZone = 0; /* lint. */ char *savedTZEnv = NULL; /* lint. */ #endif |
