Commit c8faa192 authored by Akihiro Sagawa's avatar Akihiro Sagawa Committed by Alexandre Julliard

tools: Also ignore STATUS_WAIT_0.

parent 9eaf9917
......@@ -292,7 +292,7 @@ sub GET_ERROR_NAMES()
{
if (/STATUS_(\w+)/)
{
$errors{$1} = "STATUS_$1" unless $1 eq "SUCCESS";
$errors{$1} = "STATUS_$1" unless ($1 eq "SUCCESS" || $1 eq "WAIT_0");
}
elsif (/set_win32_error\s*\(\s*(\w+)\s*\)/)
{
......
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