diff options
author | nijtmans <nijtmans> | 2010-04-02 23:11:55 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-04-02 23:11:55 (GMT) |
commit | 7b740a30c4476bd267eae2adfa261599303a9651 (patch) | |
tree | bc774ad9c5325b086c57e76b6155710bafd3f270 /generic/tclIOUtil.c | |
parent | cc240f86c997bfabb858ee9cac79fe0eee309355 (diff) | |
download | tcl-7b740a30c4476bd267eae2adfa261599303a9651.zip tcl-7b740a30c4476bd267eae2adfa261599303a9651.tar.gz tcl-7b740a30c4476bd267eae2adfa261599303a9651.tar.bz2 |
Add missing "const" in signature,
and some formatting fixes
Diffstat (limited to 'generic/tclIOUtil.c')
-rw-r--r-- | generic/tclIOUtil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c index f4dac35..ff7af5a 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.172 2010/04/02 22:52:26 dkf Exp $ + * RCS: @(#) $Id: tclIOUtil.c,v 1.173 2010/04/02 23:11:55 nijtmans Exp $ */ #include "tclInt.h" @@ -3031,7 +3031,7 @@ Tcl_LoadFile( Tcl_Interp *interp, /* Used for error reporting. */ Tcl_Obj *pathPtr, /* Name of the file containing the desired * code. */ - const char *symbols[], /* Names of functions to look up in the file's + const char *const symbols[], /* Names of functions to look up in the file's * symbol table. */ int flags, /* Flags (unused) */ void *procVPtrs, /* Where to return the addresses corresponding |