summaryrefslogtreecommitdiffstats
path: root/generic/tclIOUtil.c
diff options
context:
space:
mode:
authordonal.k.fellows@manchester.ac.uk <dkf>2008-04-27 22:21:26 (GMT)
committerdonal.k.fellows@manchester.ac.uk <dkf>2008-04-27 22:21:26 (GMT)
commitc6aa7ace5f2063d3aa73342ff15dada85b8457a3 (patch)
tree4e7b1367d8eb030241db8325caa541ce387b7313 /generic/tclIOUtil.c
parentbc3de57427d457dbb37e9b4ecb1d9d6615b96b56 (diff)
downloadtcl-c6aa7ace5f2063d3aa73342ff15dada85b8457a3.zip
tcl-c6aa7ace5f2063d3aa73342ff15dada85b8457a3.tar.gz
tcl-c6aa7ace5f2063d3aa73342ff15dada85b8457a3.tar.bz2
Get rid of pre-C89-isms (esp. CONST vs const).
Diffstat (limited to 'generic/tclIOUtil.c')
-rw-r--r--generic/tclIOUtil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c
index 778eaa6..420ea6f 100644
--- a/generic/tclIOUtil.c
+++ b/generic/tclIOUtil.c
@@ -17,7 +17,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclIOUtil.c,v 1.152 2008/04/21 16:26:37 dgp Exp $
+ * RCS: @(#) $Id: tclIOUtil.c,v 1.153 2008/04/27 22:21:30 dkf Exp $
*/
#include "tclInt.h"
@@ -3229,7 +3229,7 @@ TclpLoadFile(
Tcl_Interp *interp, /* Used for error reporting. */
Tcl_Obj *pathPtr, /* Name of the file containing the desired
* code (UTF-8). */
- const char *sym1, CONST char *sym2,
+ const char *sym1, const char *sym2,
/* Names of two functions to look up in the
* file's symbol table. */
Tcl_PackageInitProc **proc1Ptr, Tcl_PackageInitProc **proc2Ptr,