diff options
author | nijtmans <nijtmans@noemail.net> | 2010-05-31 08:54:13 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2010-05-31 08:54:13 (GMT) |
commit | 7bcae058753d23891f57a8abddc1e091f10dcad9 (patch) | |
tree | f05920f7861dea83ee1a1df44b1bae4c4bc8fa0b /generic/tclExecute.c | |
parent | 9d747416b744da343c21839aa7cde66c6385069d (diff) | |
download | tcl-7bcae058753d23891f57a8abddc1e091f10dcad9.zip tcl-7bcae058753d23891f57a8abddc1e091f10dcad9.tar.gz tcl-7bcae058753d23891f57a8abddc1e091f10dcad9.tar.bz2 |
Eliminate some casts to (Tcl_HashTable *)
FossilOrigin-Name: ff384d03a734d787d4ce6a2ced5162f896550709
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r-- | generic/tclExecute.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 7a69673..aae542a 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclExecute.c,v 1.483 2010/05/28 08:30:49 dkf Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.484 2010/05/31 08:54:15 nijtmans Exp $ */ #include "tclInt.h" @@ -232,7 +232,7 @@ VarHashCreateVar( Tcl_Obj *key, int *newPtr) { - Tcl_HashEntry *hPtr = Tcl_CreateHashEntry((Tcl_HashTable *) tablePtr, + Tcl_HashEntry *hPtr = Tcl_CreateHashEntry(&tablePtr->table, (char *) key, newPtr); if (!hPtr) { |