diff options
| author | das <das> | 2008-12-20 01:03:32 (GMT) | 
|---|---|---|
| committer | das <das> | 2008-12-20 01:03:32 (GMT) | 
| commit | 2bff6f04bea81c963b76a2dba7bcc870849fb9da (patch) | |
| tree | 69c19ee83ba600f05c8ef47cc84f9451a210ae4a /unix/tclUnixTest.c | |
| parent | 544636bacec49d86f3792bb80c294d86878b82fa (diff) | |
| download | tcl-2bff6f04bea81c963b76a2dba7bcc870849fb9da.zip tcl-2bff6f04bea81c963b76a2dba7bcc870849fb9da.tar.gz tcl-2bff6f04bea81c963b76a2dba7bcc870849fb9da.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:  | 
