winapi_check: Clarify a pair of error messages.

Don't use a regular expression if not necessary.
This commit is contained in:
Francois Gouget 2007-02-20 15:50:49 +01:00 committed by Alexandre Julliard
parent 03bcef1d94
commit 53914087aa
1 changed files with 3 additions and 3 deletions

View File

@ -137,7 +137,7 @@ sub check_documentation($) {
} elsif ($ordinal eq "init") {
$ordinal = 0;
} 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;
}
@ -164,8 +164,8 @@ sub check_documentation($) {
}
if (!$found && $external_name ne "DllMain" && $ordinal !~ /^0$/) {
$output->write("documentation: $external_name (\U$module\E.$ordinal) wrong2\n");
if (!$found && $external_name ne "DllMain" && $ordinal ne "0") {
$output->write("documentation: $external_name (\U$module\E.$ordinal) not declared in the spec file\n");
}
}
}