summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-01-26 03:14:17 +0000
committerfukachan <fukachan>2003-01-26 03:14:17 +0000
commitbb7c2298cf148d193156f990941aaa6ff682bbf8 (patch)
tree351cc6389c0fa9ca784551e61222731b4c7159cc /fml/lib/FML/Process
parent022982faa5cb64bc953ee9298f88b9ea5957eda2 (diff)
downloadfml8-bb7c2298cf148d193156f990941aaa6ff682bbf8.tar.gz
fml8-bb7c2298cf148d193156f990941aaa6ff682bbf8.tar.bz2
fml8-bb7c2298cf148d193156f990941aaa6ff682bbf8.zip
FNF: not use $_
Diffstat (limited to 'fml/lib/FML/Process')
-rw-r--r--fml/lib/FML/Process/Utils.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/fml/lib/FML/Process/Utils.pm b/fml/lib/FML/Process/Utils.pm
index 823e9c3d..8d50a951 100644
--- a/fml/lib/FML/Process/Utils.pm
+++ b/fml/lib/FML/Process/Utils.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: Utils.pm,v 1.53 2003/01/11 16:05:20 fukachan Exp $
+# $FML: Utils.pm,v 1.54 2003/01/25 09:13:35 fukachan Exp $
#
package FML::Process::Utils;
@@ -864,8 +864,8 @@ sub __get_virtual_maps
if (defined $main_cf->{ virtual_maps } && $main_cf->{ virtual_maps }) {
my (@r) = ();
my (@maps) = split(/\s+/, $main_cf->{ virtual_maps });
- for (@maps) {
- if (-f $_) { push(@r, $_);}
+ for my $map (@maps) {
+ if (-f $map) { push(@r, $map);}
}
return \@r;
}