summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2012-05-24 16:50:40 (GMT)
committerdgp <dgp@users.sourceforge.net>2012-05-24 16:50:40 (GMT)
commit286580c577c4f54efd199d0996a7df88c02d01b4 (patch)
tree4251a9956293cba5d933f821e66ea739b15f7dca /generic/tclExecute.c
parentc8619c8ec837fc2b74af6a04df85b7c5646fae5d (diff)
parentdce46c947bd11b68d1979b9e708d177acfddb911 (diff)
downloadtcl-286580c577c4f54efd199d0996a7df88c02d01b4.zip
tcl-286580c577c4f54efd199d0996a7df88c02d01b4.tar.gz
tcl-286580c577c4f54efd199d0996a7df88c02d01b4.tar.bz2
merge 8.5
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index 8d97392..f2efa0f 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -116,7 +116,7 @@ long tclObjsShared[TCL_MAX_SHARED_OBJ_STATS] = { 0, 0, 0, 0, 0 };
*/
typedef struct {
- char *name; /* Name of function. */
+ const char *name; /* Name of function. */
int numArgs; /* Number of arguments for function. */
} BuiltinFunc;
@@ -126,7 +126,7 @@ typedef struct {
* operand byte.
*/
-static BuiltinFunc tclBuiltinFuncTable[] = {
+static const BuiltinFunc tclBuiltinFuncTable[] = {
{"acos", 1},
{"asin", 1},
{"atan", 1},