summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2003-07-02 13:26:06 (GMT)
committervincentdarley <vincentdarley>2003-07-02 13:26:06 (GMT)
commit77697542b70f5ce1907d19ef2612f600a19ceb43 (patch)
treebfe0906f75610c3ab800cc3672a6710ddfe6d37c
parentdcee7a8510ae0c460b59cc78bd47d47344fc368e (diff)
downloadtcl-77697542b70f5ce1907d19ef2612f600a19ceb43.zip
tcl-77697542b70f5ce1907d19ef2612f600a19ceb43.tar.gz
tcl-77697542b70f5ce1907d19ef2612f600a19ceb43.tar.bz2
Win compilation fix
-rw-r--r--ChangeLog4
-rw-r--r--generic/tclTrace.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1575021..1149623 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-06-23 Vince Darley <vincentdarley@users.sourceforge.net>
+
+ * generic/tclTrace.c: fix to Window debug build compilation error.
+
2003-06-27 Don Porter <dgp@users.sourceforge.net>
* tests/init.test: Added [cleanupTests] to report results of tests
diff --git a/generic/tclTrace.c b/generic/tclTrace.c
index c6d0b0d..b85f422 100644
--- a/generic/tclTrace.c
+++ b/generic/tclTrace.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: tclTrace.c,v 1.2 2003/06/26 08:43:15 dkf Exp $
+ * RCS: @(#) $Id: tclTrace.c,v 1.3 2003/07/02 13:26:07 vincentdarley Exp $
*/
#include "tclInt.h"
@@ -2401,7 +2401,7 @@ TclCallVarTraces(iPtr, arrayPtr, varPtr, part1, part2, flags, leaveErrMsg)
* plus other stuff like TCL_GLOBAL_ONLY,
* TCL_NAMESPACE_ONLY, and
* TCL_INTERP_DESTROYED. */
- CONST int leaveErrMsg; /* If true, and one of the traces indicates an
+ int leaveErrMsg; /* If true, and one of the traces indicates an
* error, then leave an error message and stack
* trace information in *iPTr. */
{