Commit 53914087 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

winapi_check: Clarify a pair of error messages.

Don't use a regular expression if not necessary.
parent 03bcef1d
...@@ -137,7 +137,7 @@ sub check_documentation($) { ...@@ -137,7 +137,7 @@ sub check_documentation($) {
} elsif ($ordinal eq "init") { } elsif ($ordinal eq "init") {
$ordinal = 0; $ordinal = 0;
} else { } else {
$output->write("documentation: $external_name (\U$module\E.$ordinal) wrong1\n"); $output->write("documentation: invalid ordinal for $external_name (\U$module\E.$ordinal)\n");
next; next;
} }
...@@ -164,8 +164,8 @@ sub check_documentation($) { ...@@ -164,8 +164,8 @@ sub check_documentation($) {
} }
if (!$found && $external_name ne "DllMain" && $ordinal !~ /^0$/) { if (!$found && $external_name ne "DllMain" && $ordinal ne "0") {
$output->write("documentation: $external_name (\U$module\E.$ordinal) wrong2\n"); $output->write("documentation: $external_name (\U$module\E.$ordinal) not declared in the spec file\n");
} }
} }
} }
......
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