diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-12-13 22:12:32 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-12-13 22:12:32 (GMT) |
commit | 89e6e17872e245d31d1d294fa72930cc3da79b81 (patch) | |
tree | 34e403aa3d62a1000f4c99e69dcd662a5313ea68 /win/tclAppInit.c | |
parent | e43882908292c514bc01b2ca0c63ce6d0611c692 (diff) | |
parent | de326e5c5ed447c99c7be6991f76cc9d5e774698 (diff) | |
download | tcl-89e6e17872e245d31d1d294fa72930cc3da79b81.zip tcl-89e6e17872e245d31d1d294fa72930cc3da79b81.tar.gz tcl-89e6e17872e245d31d1d294fa72930cc3da79b81.tar.bz2 |
Merge 8.7 and (hopefully) fix Travis build with C++
Diffstat (limited to 'win/tclAppInit.c')
-rw-r--r-- | win/tclAppInit.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/tclAppInit.c b/win/tclAppInit.c index 17625d3..0a47000 100644 --- a/win/tclAppInit.c +++ b/win/tclAppInit.c @@ -90,14 +90,16 @@ main( char *dummy[]) /* Not used. */ { TCHAR **argv; + TCHAR *p; + (void)dummy; #else int _tmain( int argc, /* Number of command-line arguments. */ TCHAR *argv[]) /* Values of command-line arguments. */ { -#endif TCHAR *p; +#endif /* * Set up the default locale to be standard "C" locale so parsing is |