diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-23 13:17:12 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-23 13:17:12 (GMT) |
| commit | 710e57182b245141bed978043b7a2621d5d097c1 (patch) | |
| tree | 3326a12bac5c8ff056623f23c433b10d6d915585 /win/tclWinPipe.c | |
| parent | e4d07f5a90c9bff9035032d5bca3ccf914786d91 (diff) | |
| parent | 6e14d4b037124606898f47db23fd11da4db0b27e (diff) | |
| download | tcl-710e57182b245141bed978043b7a2621d5d097c1.zip tcl-710e57182b245141bed978043b7a2621d5d097c1.tar.gz tcl-710e57182b245141bed978043b7a2621d5d097c1.tar.bz2 | |
make some more internal tables const
Diffstat (limited to 'win/tclWinPipe.c')
| -rw-r--r-- | win/tclWinPipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinPipe.c b/win/tclWinPipe.c index b29dde4..842228a 100644 --- a/win/tclWinPipe.c +++ b/win/tclWinPipe.c @@ -1369,7 +1369,7 @@ ApplicationType( Tcl_DString nameBuf, ds; const TCHAR *nativeName; WCHAR nativeFullPath[MAX_PATH]; - static char extensions[][5] = {"", ".com", ".exe", ".bat"}; + static const char extensions[][5] = {"", ".com", ".exe", ".bat"}; /* * Look for the program as an external program. First try the name as it |
