diff options
| author | nijtmans <nijtmans> | 2010-02-25 22:20:10 (GMT) |
|---|---|---|
| committer | nijtmans <nijtmans> | 2010-02-25 22:20:10 (GMT) |
| commit | 05500753109da62940c20a012f122fb5826764e7 (patch) | |
| tree | ffa352ca883f0018c5d14cbd41b0f6917c0a97ad /unix/tclUnixTime.c | |
| parent | 7b7ae562d358bcf6cdf3af0ea558ab315314c49c (diff) | |
| download | tcl-05500753109da62940c20a012f122fb5826764e7.zip tcl-05500753109da62940c20a012f122fb5826764e7.tar.gz tcl-05500753109da62940c20a012f122fb5826764e7.tar.bz2 | |
[ tcl-Feature Requests-2958832 ] Further
speed-up of ouster-hash function.
Eliminate various unnecessary (ClientData)
type casts.
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 d3ec43e..e56d60c 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.36 2008/10/26 12:45:04 dkf Exp $ + * RCS: @(#) $Id: tclUnixTime.c,v 1.37 2010/02/25 22:20:10 nijtmans Exp $ */ #include "tclInt.h" @@ -639,7 +639,7 @@ SetTZIfNecessary(void) if (lastTZ == NULL || strcmp(lastTZ, newTZ)) { tzset(); if (lastTZ == NULL) { - Tcl_CreateExitHandler(CleanupMemory, (ClientData) NULL); + Tcl_CreateExitHandler(CleanupMemory, NULL); } else { Tcl_Free(lastTZ); } |
