diff options
author | dgp <dgp@users.sourceforge.net> | 2005-07-21 16:58:09 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-07-21 16:58:09 (GMT) |
commit | 53fb7068b06bf05b8f2e21e2212f77264b3ad2b6 (patch) | |
tree | c2b9887b3fb9bab656ca4f7e3de8d7a23ae8f3a0 /generic/tclIndexObj.c | |
parent | be7cd35abf2f4421f8c0c70780675e4313589df3 (diff) | |
download | tcl-53fb7068b06bf05b8f2e21e2212f77264b3ad2b6.zip tcl-53fb7068b06bf05b8f2e21e2212f77264b3ad2b6.tar.gz tcl-53fb7068b06bf05b8f2e21e2212f77264b3ad2b6.tar.bz2 |
fix compile error
Diffstat (limited to 'generic/tclIndexObj.c')
-rw-r--r-- | generic/tclIndexObj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIndexObj.c b/generic/tclIndexObj.c index 3733241..794f1c9 100644 --- a/generic/tclIndexObj.c +++ b/generic/tclIndexObj.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: tclIndexObj.c,v 1.25 2005/07/21 14:38:49 dkf Exp $ + * RCS: @(#) $Id: tclIndexObj.c,v 1.26 2005/07/21 16:58:09 dgp Exp $ */ #include "tclInt.h" @@ -503,7 +503,7 @@ Tcl_WrongNumArgs(interp, objc, objv, message) if (iPtr->ensembleRewrite.sourceObjs != NULL) { int toSkip = iPtr->ensembleRewrite.numInsertedObjs; int toPrint = iPtr->ensembleRewrite.numRemovedObjs; - Tcl_Obj *origObjv = iPtr->ensembleRewrite.sourceObjs; + Tcl_Obj * CONST *origObjv = iPtr->ensembleRewrite.sourceObjs; /* * We only know how to do rewriting if all the replaced objects are |