diff options
author | dgp <dgp@users.sourceforge.net> | 2008-10-17 16:32:57 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-10-17 16:32:57 (GMT) |
commit | c7737419286a172921b8edcbf3b4f40c02e02dae (patch) | |
tree | 28220fcac63f741bcf4e0650f857498e526120b2 /generic/tclTest.c | |
parent | 842e3ff91428c72a2ce0d4df4889778af82f4b12 (diff) | |
download | tcl-c7737419286a172921b8edcbf3b4f40c02e02dae.zip tcl-c7737419286a172921b8edcbf3b4f40c02e02dae.tar.gz tcl-c7737419286a172921b8edcbf3b4f40c02e02dae.tar.bz2 |
* generic/tclCompile.h: Declare the internal tclInstructionTable
* generic/tclExecute.c: to simply be "const", not CONST86.
* generic/tclCmdAH.c: whitespace.
* generic/tclCmdIL.c: Uninitialized variable warning.
* generic/tclTest.c: const correctness warning.
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r-- | generic/tclTest.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c index 1ddfb5f..d8c00b6 100644 --- a/generic/tclTest.c +++ b/generic/tclTest.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: tclTest.c,v 1.128 2008/10/16 22:34:19 nijtmans Exp $ + * RCS: @(#) $Id: tclTest.c,v 1.129 2008/10/17 16:32:58 dgp Exp $ */ #define TCL_TEST @@ -5891,7 +5891,7 @@ TestFilesystemObjCmd( Tcl_Obj *const objv[]) { int res, boolVal; - const char *msg; + char *msg; if (objc != 2) { Tcl_WrongNumArgs(interp, 1, objv, "boolean"); @@ -6263,7 +6263,7 @@ TestSimpleFilesystemObjCmd( Tcl_Obj *const objv[]) { int res, boolVal; - const char *msg; + char *msg; if (objc != 2) { Tcl_WrongNumArgs(interp, 1, objv, "boolean"); |