Commit 3b5fb27f authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

winapi: Small tweaks to fix perl warnings.

perl says defined(@array) is deprecated.
parent 24fbe9f2
......@@ -414,7 +414,7 @@ sub c_files($) {
my $c_files = \@{$self->{_C_FILES}};
if(!defined(@$c_files)) {
if(!@$c_files) {
$self->parse_files;
}
......@@ -426,7 +426,7 @@ sub h_files($) {
my $h_files = \@{$self->{_H_FILES}};
if(!defined(@$h_files)) {
if(!@$h_files) {
$self->parse_files;
}
......@@ -438,7 +438,7 @@ sub directories($) {
my $directories = \@{$self->{_DIRECTORIES}};
if(!defined(@$directories)) {
if(!@$directories) {
$self->parse_files;
}
......
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