Module: wine Branch: master Commit: c8faa1925c144ecb3874197e57a3addb5f685351 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c8faa1925c144ecb3874197e57...
Author: Akihiro Sagawa sagawa.aki@gmail.com Date: Mon Jul 3 23:24:31 2017 +0900
tools: Also ignore STATUS_WAIT_0.
Signed-off-by: Akihiro Sagawa sagawa.aki@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
tools/make_requests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/make_requests b/tools/make_requests index 6e4a537..d99793c 100755 --- a/tools/make_requests +++ b/tools/make_requests @@ -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*)/) {