winapi_check: Also warn about 'unsigned long's Win64 compatibility problems.

This commit is contained in:
Francois Gouget 2007-06-11 13:13:49 +02:00 committed by Alexandre Julliard
parent 6936bb100f
commit 4e07863184
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ sub parse_api_file($$) {
}
} elsif(defined($kind)) {
my $type = $_;
if ($type =~ /^long\b/)
if ($type =~ /\blong\b/)
{
$output->write("$file:$linenum: type ($type) is not Win64 compatible\n");
}