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:
parent
9eaf99174e
commit
c8faa1925c
|
@ -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*\)/)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue