diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-10-01 11:04:19 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-10-01 11:04:19 (GMT) |
commit | e24d246c87b3d227a8fb4835bfeebad333d38b42 (patch) | |
tree | b364c65de0a09b2125ba867a1ba14c257532d3d3 /unix/tclUnixTest.c | |
parent | 4cabc332b4292774ede435437957baf321e9afd2 (diff) | |
download | tcl-e24d246c87b3d227a8fb4835bfeebad333d38b42.zip tcl-e24d246c87b3d227a8fb4835bfeebad333d38b42.tar.gz tcl-e24d246c87b3d227a8fb4835bfeebad333d38b42.tar.bz2 |
Eliminate a few gcc compiler warnings, when using -Wwrite-strings (tested with the brand-new gcc 5.2.0)
Diffstat (limited to 'unix/tclUnixTest.c')
-rw-r--r-- | unix/tclUnixTest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixTest.c b/unix/tclUnixTest.c index 0747c2d..722ded9 100644 --- a/unix/tclUnixTest.c +++ b/unix/tclUnixTest.c @@ -53,7 +53,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: |