summaryrefslogtreecommitdiffstats
path: root/generic/tclUtil.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2002-03-20 22:47:36 (GMT)
committerdgp <dgp@users.sourceforge.net>2002-03-20 22:47:36 (GMT)
commit8c538d2de4c21bd7ae487e0432aa39d4ae2b9ed1 (patch)
tree8f368f02d83a51268df54df95963ddc703bfa767 /generic/tclUtil.c
parente51eaf9011544d3ccb2756c1e458cc42aeddd877 (diff)
downloadtcl-8c538d2de4c21bd7ae487e0432aa39d4ae2b9ed1.zip
tcl-8c538d2de4c21bd7ae487e0432aa39d4ae2b9ed1.tar.gz
tcl-8c538d2de4c21bd7ae487e0432aa39d4ae2b9ed1.tar.bz2
* Updated interfaces of generic/tclVar.c according
to TIP 27. In particular, the "part2" arguments were CONSTified.
Diffstat (limited to 'generic/tclUtil.c')
-rw-r--r--generic/tclUtil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclUtil.c b/generic/tclUtil.c
index c65fdd5..d855381 100644
--- a/generic/tclUtil.c
+++ b/generic/tclUtil.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUtil.c,v 1.29 2002/02/08 02:52:54 dgp Exp $
+ * RCS: @(#) $Id: tclUtil.c,v 1.30 2002/03/20 22:47:36 dgp Exp $
*/
#include "tclInt.h"
@@ -1879,7 +1879,7 @@ TclPrecTraceProc(clientData, interp, name1, name2, flags)
ClientData clientData; /* Not used. */
Tcl_Interp *interp; /* Interpreter containing variable. */
char *name1; /* Name of variable. */
- char *name2; /* Second part of variable name. */
+ CONST char *name2; /* Second part of variable name. */
int flags; /* Information about what happened. */
{
CONST char *value;