Module: wine Branch: master Commit: 4e07863184c9b47ba219d02e9e39bd739e726d26 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4e07863184c9b47ba219d02e9e... Author: Francois Gouget <fgouget(a)free.fr> Date: Mon Jun 11 13:13:49 2007 +0200 winapi_check: Also warn about 'unsigned long's Win64 compatibility problems. --- tools/winapi/winapi.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/winapi/winapi.pm b/tools/winapi/winapi.pm index 5bf4ce6..8c552e5 100644 --- a/tools/winapi/winapi.pm +++ b/tools/winapi/winapi.pm @@ -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"); }