Error numbers >= 32 are to be expected.

This commit is contained in:
Ge van Geldorp 2005-02-14 11:03:21 +00:00 committed by Alexandre Julliard
parent 37bc441d57
commit a912c2a885

View file

@ -365,7 +365,7 @@ static UINT SHELL_ExecuteW(const WCHAR *lpCmd, WCHAR *env, BOOL shWait,
}
else if ((retval = GetLastError()) >= 32)
{
FIXME("Strange error set by CreateProcess: %d\n", retval);
TRACE("CreateProcess returned error %d\n", retval);
retval = ERROR_BAD_FORMAT;
}