diff options
| author | dgp@users.sourceforge.net <dgp> | 2001-09-28 01:21:52 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2001-09-28 01:21:52 (GMT) |
| commit | 13c1fe5684ea4b53a503717fcc2a52da0d4051ba (patch) | |
| tree | efc77c730c35b6fb82ceecf051d26b598c191f2e /generic/tclTest.c | |
| parent | a4a62e2d8ac9210343b44309922449e4170a2731 (diff) | |
| download | tcl-13c1fe5684ea4b53a503717fcc2a52da0d4051ba.zip tcl-13c1fe5684ea4b53a503717fcc2a52da0d4051ba.tar.gz tcl-13c1fe5684ea4b53a503717fcc2a52da0d4051ba.tar.bz2 | |
* More CONST poisoning
fixes from the 2001-09-24 TIP 27 changes. CONST-ified
Tcl_FSLoadFile and TclpLoadFile. Report and patch from Kevin
Kenny. [Bug 465833]
Diffstat (limited to 'generic/tclTest.c')
| -rw-r--r-- | generic/tclTest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c index e1f7cdb..995ed27 100644 --- a/generic/tclTest.c +++ b/generic/tclTest.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclTest.c,v 1.31 2001/09/20 01:00:10 hobbs Exp $ + * RCS: @(#) $Id: tclTest.c,v 1.32 2001/09/28 01:21:53 dgp Exp $ */ #define TCL_TEST @@ -5404,7 +5404,7 @@ TestReportLoadFile(interp, fileName, sym1, sym2, proc1Ptr, proc2Ptr, Tcl_Interp *interp; /* Used for error reporting. */ Tcl_Obj *fileName; /* Name of the file containing the desired * code. */ - char *sym1, *sym2; /* Names of two procedures to look up in + CONST char *sym1, *sym2; /* Names of two procedures to look up in * the file's symbol table. */ Tcl_PackageInitProc **proc1Ptr, **proc2Ptr; /* Where to return the addresses corresponding |
