summaryrefslogtreecommitdiffstats
path: root/generic/tclTest.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2002-01-17 02:43:19 (GMT)
committerdgp <dgp@users.sourceforge.net>2002-01-17 02:43:19 (GMT)
commit5bd1d8e23bddeb03e519a5533f27399104561cc6 (patch)
tree46d682a72fa2eedfc759dc23e271847bdbc00dc1 /generic/tclTest.c
parent265ce643df6d23c8b73644d64e926d5bba4278f3 (diff)
downloadtcl-5bd1d8e23bddeb03e519a5533f27399104561cc6.zip
tcl-5bd1d8e23bddeb03e519a5533f27399104561cc6.tar.gz
tcl-5bd1d8e23bddeb03e519a5533f27399104561cc6.tar.bz2
* Updated APIs in generic/tclParse.c according to the guidelines
of TIP 27. Updated callers.
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r--generic/tclTest.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c
index 5401352..202bbd5 100644
--- a/generic/tclTest.c
+++ b/generic/tclTest.c
@@ -13,7 +13,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.37 2002/01/15 21:19:07 dgp Exp $
+ * RCS: @(#) $Id: tclTest.c,v 1.38 2002/01/17 02:43:19 dgp Exp $
*/
#define TCL_TEST
@@ -2590,7 +2590,8 @@ TestparsevarObjCmd(clientData, interp, objc, objv)
int objc; /* Number of arguments. */
Tcl_Obj *CONST objv[]; /* The argument objects. */
{
- char *name, *value, *termPtr;
+ CONST char *value;
+ char *name, *termPtr;
if (objc != 2) {
Tcl_WrongNumArgs(interp, 1, objv, "varName");