start: Fix mask for creation flags (coverity).

oldstable
André Hentschel 2012-11-07 23:18:57 +01:00 committed by Alexandre Julliard
parent 001726fcbd
commit 76bc1d76a5
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ int wmain (int argc, WCHAR *argv[])
sei.lpDirectory = argv[++i];
}
else if (is_option(argv[i], bW)) {
creation_flags &= !CREATE_NEW_CONSOLE;
creation_flags &= ~CREATE_NEW_CONSOLE;
}
else if (argv[i][0] == '/' && (argv[i][1] == 'i' || argv[i][1] == 'I')) {
TRACE("/i is ignored\n"); /* FIXME */