diff options
author | dgp <dgp@noemail.net> | 2001-09-28 01:21:51 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2001-09-28 01:21:51 (GMT) |
commit | 5cf885af4701cd916baf0feb32bdb2f139ee900b (patch) | |
tree | efc77c730c35b6fb82ceecf051d26b598c191f2e /unix/tclLoadDl.c | |
parent | c68a91fc80c46305eed8c731d1bd00ece584b1a6 (diff) | |
download | tcl-5cf885af4701cd916baf0feb32bdb2f139ee900b.zip tcl-5cf885af4701cd916baf0feb32bdb2f139ee900b.tar.gz tcl-5cf885af4701cd916baf0feb32bdb2f139ee900b.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]
FossilOrigin-Name: 82ca28932032a7a64d20820b116a6412748af736
Diffstat (limited to 'unix/tclLoadDl.c')
-rw-r--r-- | unix/tclLoadDl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclLoadDl.c b/unix/tclLoadDl.c index 7eeaefa..97d4c23 100644 --- a/unix/tclLoadDl.c +++ b/unix/tclLoadDl.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: tclLoadDl.c,v 1.6 2001/09/24 21:10:32 dgp Exp $ + * RCS: @(#) $Id: tclLoadDl.c,v 1.7 2001/09/28 01:21:53 dgp Exp $ */ #include "tclInt.h" @@ -62,7 +62,7 @@ TclpLoadFile(interp, pathPtr, sym1, sym2, proc1Ptr, proc2Ptr, Tcl_Interp *interp; /* Used for error reporting. */ Tcl_Obj *pathPtr; /* 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 |