diff options
author | das <das> | 2008-12-20 01:03:32 (GMT) |
---|---|---|
committer | das <das> | 2008-12-20 01:03:32 (GMT) |
commit | 6ea9bac1b2efe936f50571e3d5389f1f83c787a6 (patch) | |
tree | 69c19ee83ba600f05c8ef47cc84f9451a210ae4a /unix/tclUnixTest.c | |
parent | eb4fe33c3e35050c9feb2b4aadd786f8aae7bc64 (diff) | |
download | tcl-6ea9bac1b2efe936f50571e3d5389f1f83c787a6.zip tcl-6ea9bac1b2efe936f50571e3d5389f1f83c787a6.tar.gz tcl-6ea9bac1b2efe936f50571e3d5389f1f83c787a6.tar.bz2 |
fix warning
Diffstat (limited to 'unix/tclUnixTest.c')
-rw-r--r-- | unix/tclUnixTest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixTest.c b/unix/tclUnixTest.c index 469e00a..b5ff0c4 100644 --- a/unix/tclUnixTest.c +++ b/unix/tclUnixTest.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixTest.c,v 1.29 2008/10/03 19:20:24 msofer Exp $ + * RCS: @(#) $Id: tclUnixTest.c,v 1.30 2008/12/20 01:03:32 das Exp $ */ #include "tclInt.h" @@ -55,7 +55,7 @@ static Pipe testPipes[MAX_PIPES]; * The stuff below is used by the testalarm and testgotsig ommands. */ -static char *gotsig = "0"; +static const char *gotsig = "0"; /* * Forward declarations of functions defined later in this file: |