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/tclTestProcBodyObj.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/tclTestProcBodyObj.c')
| -rw-r--r-- | generic/tclTestProcBodyObj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclTestProcBodyObj.c b/generic/tclTestProcBodyObj.c index 2d5745e..2172869 100644 --- a/generic/tclTestProcBodyObj.c +++ b/generic/tclTestProcBodyObj.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclTestProcBodyObj.c,v 1.10 2009/11/18 23:46:05 nijtmans Exp $ + * RCS: @(#) $Id: tclTestProcBodyObj.c,v 1.11 2010/02/25 22:20:10 nijtmans Exp $ */ #ifndef USE_TCL_STUBS @@ -298,7 +298,7 @@ ProcBodyTestProcObjCmd( myobjv[3] = bodyObjPtr; myobjv[4] = NULL; - result = Tcl_ProcObjCmd((ClientData) NULL, interp, objc, myobjv); + result = Tcl_ProcObjCmd(NULL, interp, objc, myobjv); Tcl_DecrRefCount(bodyObjPtr); return result; |
