tools: Also ignore STATUS_WAIT_0.

Signed-off-by: Akihiro Sagawa <sagawa.aki@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Akihiro Sagawa 2017-07-03 23:24:31 +09:00 committed by Alexandre Julliard
parent 9eaf99174e
commit c8faa1925c
1 changed files with 1 additions and 1 deletions

View File

@ -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*\)/)
{