diff options
author | nijtmans <nijtmans> | 2010-05-03 13:20:39 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-05-03 13:20:39 (GMT) |
commit | 62e51a9476fa3eb2f231c8c98bdaaa6ee57ee911 (patch) | |
tree | f46364c2d0e36fd76408b1c4a2570416916fc895 | |
parent | fd1bb5e2a2a81897608067cf5b4cfcddd0d0a923 (diff) | |
download | tcl-62e51a9476fa3eb2f231c8c98bdaaa6ee57ee911.zip tcl-62e51a9476fa3eb2f231c8c98bdaaa6ee57ee911.tar.gz tcl-62e51a9476fa3eb2f231c8c98bdaaa6ee57ee911.tar.bz2 |
For MINGW/CYGWIN, use GetCommandLineA explicitely
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | win/tclAppInit.c | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -5,6 +5,7 @@ * generic/tclTomMath.h * tools/fix_tommath_h.tcl * libtommath/tommath.h Formatting (# should always be first char on line) + * win/tclAppInit.c For MINGW/CYGWIN, use GetCommandLineA explicitely 2010-04-30 Don Porter <dgp@users.sourceforge.net> 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 |