diff options
author | nijtmans <nijtmans> | 2008-10-14 22:37:53 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-10-14 22:37:53 (GMT) |
commit | 45c244cd8dcd109d144858140ce8c0c070c79f7e (patch) | |
tree | 600d17e3a8b14046378d7711a27fd9e79eb1ed86 /generic/tclStubLib.c | |
parent | ea53c3ec3c87bc77531bc6965ab99a3a741e5789 (diff) | |
download | tcl-45c244cd8dcd109d144858140ce8c0c070c79f7e.zip tcl-45c244cd8dcd109d144858140ce8c0c070c79f7e.tar.gz tcl-45c244cd8dcd109d144858140ce8c0c070c79f7e.tar.bz2 |
* generic/tclCmdAH.c: Fix minor compiler warnings when compiling
* generic/tclCmdMZ.c: with -Wwrite-strings
* generic/tclIndexObj.c:
* generic/tclProc.c:
* generic/tclStubLib.c:
* generic/tclUtil.c:
Diffstat (limited to 'generic/tclStubLib.c')
-rw-r--r-- | generic/tclStubLib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclStubLib.c b/generic/tclStubLib.c index 9b8f390..62869d4 100644 --- a/generic/tclStubLib.c +++ b/generic/tclStubLib.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubLib.c,v 1.27 2008/10/02 20:59:45 dgp Exp $ + * RCS: @(#) $Id: tclStubLib.c,v 1.28 2008/10/14 22:37:53 nijtmans Exp $ */ /* @@ -47,7 +47,7 @@ HasStubSupport( } iPtr->result = - "This interpreter does not support stubs-enabled extensions."; + (char *)"This interpreter does not support stubs-enabled extensions."; iPtr->freeProc = TCL_STATIC; return NULL; } |