mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
start: Constify a character string.
This commit is contained in:
parent
b87b9f04d7
commit
a478c108e2
1 changed files with 1 additions and 1 deletions
|
@ -374,7 +374,7 @@ int wmain (int argc, WCHAR *argv[])
|
|||
WCHAR *commandline;
|
||||
STARTUPINFOW startup_info;
|
||||
PROCESS_INFORMATION process_information;
|
||||
static WCHAR commandlineformat[] = {'"','%','s','"','%','s',0};
|
||||
static const WCHAR commandlineformat[] = {'"','%','s','"','%','s',0};
|
||||
|
||||
/* explorer on windows always quotes the filename when running a binary on windows (see bug 5224) so we have to use CreateProcessW in this case */
|
||||
|
||||
|
|
Loading…
Reference in a new issue