summaryrefslogtreecommitdiffstats
path: root/generic/tclUtil.c
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2002-03-20 22:47:35 (GMT)
committerdgp <dgp@noemail.net>2002-03-20 22:47:35 (GMT)
commitba9f95d5492347d48f0585b5a7d711347e973bf3 (patch)
tree8f368f02d83a51268df54df95963ddc703bfa767 /generic/tclUtil.c
parent431752470573c699cd64c8174c40c89614896d4d (diff)
downloadtcl-ba9f95d5492347d48f0585b5a7d711347e973bf3.zip
tcl-ba9f95d5492347d48f0585b5a7d711347e973bf3.tar.gz
tcl-ba9f95d5492347d48f0585b5a7d711347e973bf3.tar.bz2
* Updated interfaces of generic/tclVar.c according
to TIP 27. In particular, the "part2" arguments were CONSTified. FossilOrigin-Name: b64c27e52d63f10977aa98296f7f47941929cfff
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;