diff options
author | nijtmans <nijtmans> | 2010-02-25 22:20:10 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-02-25 22:20:10 (GMT) |
commit | 98fb386a75b36633c9e4df45415e296bf62ec42f (patch) | |
tree | ffa352ca883f0018c5d14cbd41b0f6917c0a97ad /generic/tclCkalloc.c | |
parent | 526e8665e559eb977cf2475cfcd08492be633a87 (diff) | |
download | tcl-98fb386a75b36633c9e4df45415e296bf62ec42f.zip tcl-98fb386a75b36633c9e4df45415e296bf62ec42f.tar.gz tcl-98fb386a75b36633c9e4df45415e296bf62ec42f.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); } |