summaryrefslogtreecommitdiffstats
path: root/win/tclAppInit.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-05-03 13:20:39 (GMT)
committernijtmans <nijtmans>2010-05-03 13:20:39 (GMT)
commit62e51a9476fa3eb2f231c8c98bdaaa6ee57ee911 (patch)
treef46364c2d0e36fd76408b1c4a2570416916fc895 /win/tclAppInit.c
parentfd1bb5e2a2a81897608067cf5b4cfcddd0d0a923 (diff)
downloadtcl-62e51a9476fa3eb2f231c8c98bdaaa6ee57ee911.zip
tcl-62e51a9476fa3eb2f231c8c98bdaaa6ee57ee911.tar.gz
tcl-62e51a9476fa3eb2f231c8c98bdaaa6ee57ee911.tar.bz2
For MINGW/CYGWIN, use GetCommandLineA explicitely
Diffstat (limited to 'win/tclAppInit.c')
-rw-r--r--win/tclAppInit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclAppInit.c b/win/tclAppInit.c
index 1f90610..a4d38de 100644
--- a/win/tclAppInit.c
+++ b/win/tclAppInit.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclAppInit.c,v 1.30 2009/11/27 21:44:01 kennykb Exp $
+ * RCS: @(#) $Id: tclAppInit.c,v 1.31 2010/05/03 13:20:39 nijtmans Exp $
*/
#include "tcl.h"
@@ -218,7 +218,7 @@ setargv(
char **argv;
int argc, size, inquote, copy, slashes;
- cmdLine = GetCommandLine(); /* INTL: BUG */
+ cmdLine = GetCommandLineA(); /* INTL: BUG */
/*
* Precompute an overly pessimistic guess at the number of arguments in