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 /generic/tclCkalloc.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 'generic/tclCkalloc.c')
| -rw-r--r-- | generic/tclCkalloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclCkalloc.c b/generic/tclCkalloc.c index 9d9343f..70aead9 100644 --- a/generic/tclCkalloc.c +++ b/generic/tclCkalloc.c @@ -14,7 +14,7 @@ * * This code contributed by Karl Lehenbauer and Mark Diekhans * - * RCS: @(#) $Id: tclCkalloc.c,v 1.37 2009/09/29 05:03:46 dgp Exp $ + * RCS: @(#) $Id: tclCkalloc.c,v 1.38 2010/02/25 22:20:10 nijtmans Exp $ */ #include "tclInt.h" @@ -1010,8 +1010,8 @@ Tcl_InitMemory( * added */ { TclInitDbCkalloc(); - Tcl_CreateCommand(interp, "memory", MemoryCmd, (ClientData) NULL, NULL); - Tcl_CreateCommand(interp, "checkmem", CheckmemCmd, (ClientData) 0, NULL); + Tcl_CreateCommand(interp, "memory", MemoryCmd, NULL, NULL); + Tcl_CreateCommand(interp, "checkmem", CheckmemCmd, NULL, NULL); } |
