Commit 76bc1d76 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

start: Fix mask for creation flags (coverity).

parent 001726fc
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment