summaryrefslogtreecommitdiffstats
path: root/generic/tclThreadTest.c
diff options
context:
space:
mode:
authordas <das@noemail.net>2002-01-18 03:22:30 (GMT)
committerdas <das@noemail.net>2002-01-18 03:22:30 (GMT)
commitb085f2a616dbbc1d5df680017311a3ddaba2e29e (patch)
tree1dc5faca8a9c13b94076efdffe995dc3ebfe4dca /generic/tclThreadTest.c
parent28522d4ed546cb7bf9c3719df007f0a93424cdc6 (diff)
downloadtcl-b085f2a616dbbc1d5df680017311a3ddaba2e29e.zip
tcl-b085f2a616dbbc1d5df680017311a3ddaba2e29e.tar.gz
tcl-b085f2a616dbbc1d5df680017311a3ddaba2e29e.tar.bz2
* generic/tclThreadTest.c:
* mac/tclMacChan.c: * mac/tclMacFCmd.c: * mac/tclMacFile.c: * mac/tclMacLoad.c: * mac/tclMacResource.c: TIP 27 CONSTification broke the mac build in a number of places. FossilOrigin-Name: 07c625a70c1fc0e3b59bea26efef040c319a8bbe
Diffstat (limited to 'generic/tclThreadTest.c')
-rw-r--r--generic/tclThreadTest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclThreadTest.c b/generic/tclThreadTest.c
index acbb796..651c820 100644
--- a/generic/tclThreadTest.c
+++ b/generic/tclThreadTest.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclThreadTest.c,v 1.13 2001/12/29 00:49:49 hobbs Exp $
+ * RCS: @(#) $Id: tclThreadTest.c,v 1.14 2002/01/18 03:22:31 das Exp $
*/
#include "tclInt.h"
@@ -203,7 +203,7 @@ Tcl_ThreadObjCmd(dummy, interp, objc, objv)
{
ThreadSpecificData *tsdPtr = TCL_TSD_INIT(&dataKey);
int option;
- static char *threadOptions[] = {"create", "exit", "id", "join", "names",
+ static CONST char *threadOptions[] = {"create", "exit", "id", "join", "names",
"send", "wait", "errorproc",
(char *) NULL};
enum options {THREAD_CREATE, THREAD_EXIT, THREAD_ID, THREAD_JOIN,