B: Avoid problem with operator precedence.

This commit is contained in:
Jens Luedicke
2012-09-02 19:09:38 +02:00
parent 659e9ec7ff
commit 98266e1cd0

View File

@@ -136,7 +136,7 @@ sub walk {
}
}
opendir my $dirh, $path || return FAILED;
opendir (my $dirh, $path) || return FAILED;
my @dir_contents = readdir $dirh;
@dir_contents = File::Spec->no_upwards(@dir_contents);