winapi_test: Minor $pointer_size check consistency tweak.

Signed-off-by: Serge Gautherie <winehq-git_serge_180711@gautherie.fr>
Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Serge Gautherie 2020-08-12 05:41:31 +02:00 committed by Alexandre Julliard
parent 78e9192d07
commit 84458b1927
1 changed files with 1 additions and 1 deletions

View File

@ -419,7 +419,7 @@ foreach my $file (@files) {
} elsif ($preprocessor =~ /^\#\s*ifdef\s+_WIN64/) {
push @ifdefs, ($pointer_size == 8);
} elsif ($preprocessor =~ /^\#\s*ifndef\s+_WIN64/) {
push @ifdefs, ($pointer_size == 4);
push @ifdefs, ($pointer_size != 8);
} elsif ($preprocessor =~ /^\#\s*elif\s+defined\s*\(\s*_WIN64\s*\)/) {
$ifdefs[$#ifdefs] = ($pointer_size == 8);
} elsif ($preprocessor =~ /^\#\s*ifdef\s/) {