aboutsummaryrefslogtreecommitdiff
path: root/jim.h
diff options
context:
space:
mode:
authorpatthoyts <patthoyts>2005-03-04 10:06:05 +0000
committerpatthoyts <patthoyts>2005-03-04 10:06:05 +0000
commit83c1c0116fc03c0b90ebd6aaa580cb579cf84a51 (patch)
tree90056d094bd734d1111617136db99a26b1e4f093 /jim.h
parente7cacb95e1424fea1080b3464e0029355c5e38f0 (diff)
downloadjimtcl-83c1c0116fc03c0b90ebd6aaa580cb579cf84a51.zip
jimtcl-83c1c0116fc03c0b90ebd6aaa580cb579cf84a51.tar.gz
jimtcl-83c1c0116fc03c0b90ebd6aaa580cb579cf84a51.tar.bz2
Use command line vars in the Makefile.
Make const quiet with gcc -Wwrite-strings Fixed macro usage in COM extension that gcc doesn't like.
Diffstat (limited to 'jim.h')
-rw-r--r--jim.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/jim.h b/jim.h
index ab9541c..dde4bd8 100644
--- a/jim.h
+++ b/jim.h
@@ -322,7 +322,7 @@ typedef void (Jim_DupInternalRepProc)(struct Jim_Interp *interp,
typedef void (Jim_UpdateStringProc)(struct Jim_Obj *objPtr);
typedef struct Jim_ObjType {
- char *name; /* The name of the type. */
+ const char *name; /* The name of the type. */
Jim_FreeInternalRepProc *freeIntRepProc;
Jim_DupInternalRepProc *dupIntRepProc;
Jim_UpdateStringProc *updateStringProc;