diff options
| author | Kevin B Kenny <kennykb@acm.org> | 2007-04-20 05:51:08 (GMT) |
|---|---|---|
| committer | Kevin B Kenny <kennykb@acm.org> | 2007-04-20 05:51:08 (GMT) |
| commit | 171b3bb78833c68637968ebc32b6fdd63fc2c14c (patch) | |
| tree | d1bc1e4898e7345e3f4220c96e003fd6e41b73ed /generic/tclClock.c | |
| parent | deac8084a2d3b280df5a730e44a4a6b0d732449d (diff) | |
| download | tcl-171b3bb78833c68637968ebc32b6fdd63fc2c14c.zip tcl-171b3bb78833c68637968ebc32b6fdd63fc2c14c.tar.gz tcl-171b3bb78833c68637968ebc32b6fdd63fc2c14c.tar.bz2 | |
Whitespace policing, replacing commas in varargs with constant string catenation, and fixed an oversight in the fix for NZA time zones.
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 223577b..ff3e7bb 100644 --- a/generic/tclClock.c +++ b/generic/tclClock.c @@ -12,7 +12,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.60 2007/04/10 14:47:09 dkf Exp $ + * RCS: @(#) $Id: tclClock.c,v 1.61 2007/04/20 05:51:09 kennykb Exp $ */ #include "tclInt.h" @@ -994,7 +994,7 @@ ConvertUTCToLocalUsingC( timeVal = ThreadSafeLocalTime(&tock); if (timeVal == NULL) { Tcl_AppendResult(interp, - "localtime failed (clock value may be too ", + "localtime failed (clock value may be too " "large/small to represent)", NULL); Tcl_SetErrorCode(interp, "CLOCK", "localtimeFailed", NULL); return TCL_ERROR; |
