Fix warning, add default case to switch.

This commit is contained in:
Alessandro Portale
2009-08-24 23:57:31 +02:00
parent 77c4de5635
commit 5086983bb7

View File

@@ -174,6 +174,8 @@ int main()
case Suspend:
creationFlags |= CREATE_SUSPENDED;
break;
default:
break;
}
if (!CreateProcessW(0, argv[ArgCmdLine], 0, 0, FALSE, creationFlags, env, 0, &si, &pi)) {
/* Only expected error: no such file or direcotry, i.e. executable not found */