diff options
author | vincentdarley <vincentdarley> | 2003-07-02 13:26:06 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2003-07-02 13:26:06 (GMT) |
commit | 77697542b70f5ce1907d19ef2612f600a19ceb43 (patch) | |
tree | bfe0906f75610c3ab800cc3672a6710ddfe6d37c /generic | |
parent | dcee7a8510ae0c460b59cc78bd47d47344fc368e (diff) | |
download | tcl-77697542b70f5ce1907d19ef2612f600a19ceb43.zip tcl-77697542b70f5ce1907d19ef2612f600a19ceb43.tar.gz tcl-77697542b70f5ce1907d19ef2612f600a19ceb43.tar.bz2 |
Win compilation fix
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclTrace.c | 4 |
1 files changed, 2 insertions, 2 deletions
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. */ { |