Commit a912c2a8 authored by Ge van Geldorp's avatar Ge van Geldorp Committed by Alexandre Julliard

Error numbers >= 32 are to be expected.

parent 37bc441d
......@@ -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;
}
......
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