summaryrefslogtreecommitdiffstats
path: root/win/tclWinPipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'win/tclWinPipe.c')
-rw-r--r--win/tclWinPipe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinPipe.c b/win/tclWinPipe.c
index e448493..4659021 100644
--- a/win/tclWinPipe.c
+++ b/win/tclWinPipe.c
@@ -1519,9 +1519,9 @@ BuildCommandLine(
Tcl_DString ds;
/* characters to enclose in quotes if unpaired quote flag set */
- const static char *specMetaChars = "&|^<>!()%";
- /* characters to enclose in quotes in any case (regardless unpaired-flag) */
- const static char *specMetaChars2 = "%";
+ static const char specMetaChars[] = "&|^<>!()%";
+ /* character to enclose in quotes in any case (regardless unpaired-flag) */
+ static const char specMetaChars2[] = "%";
/* Quote flags:
* CL_ESCAPE - escape argument;