summaryrefslogtreecommitdiffstats
path: root/generic/tclTestProcBodyObj.c
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2009-02-10 23:08:56 (GMT)
committernijtmans <nijtmans@noemail.net>2009-02-10 23:08:56 (GMT)
commit491a735b8ed591e2bb516fc47cf0b3e0d5dc0dcb (patch)
treea407af9f40cff9d5a67f7ecf3a88b22578e0f842 /generic/tclTestProcBodyObj.c
parent228226b45f89df593f47066d1f2add74e5422610 (diff)
downloadtcl-491a735b8ed591e2bb516fc47cf0b3e0d5dc0dcb.zip
tcl-491a735b8ed591e2bb516fc47cf0b3e0d5dc0dcb.tar.gz
tcl-491a735b8ed591e2bb516fc47cf0b3e0d5dc0dcb.tar.bz2
- eliminate some unnessary type casts
- some internal const decorations - spacing FossilOrigin-Name: a45c7b126b9137976cd91960cb3e2ecb5201d222
Diffstat (limited to 'generic/tclTestProcBodyObj.c')
-rw-r--r--generic/tclTestProcBodyObj.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclTestProcBodyObj.c b/generic/tclTestProcBodyObj.c
index 234b267..b961e3c 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.8 2009/01/09 11:21:46 dkf Exp $
+ * RCS: @(#) $Id: tclTestProcBodyObj.c,v 1.9 2009/02/10 23:08:56 nijtmans Exp $
*/
#include "tclInt.h"
@@ -229,7 +229,7 @@ ProcBodyTestProcObjCmd(
int objc, /* argument count */
Tcl_Obj *const objv[]) /* arguments */
{
- char *fullName;
+ const char *fullName;
Tcl_Command procCmd;
Command *cmdPtr;
Proc *procPtr = NULL;