diff options
Diffstat (limited to 'perl-install/common.pm')
-rw-r--r-- | perl-install/common.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/common.pm b/perl-install/common.pm index 6dd6f279c..3e46d89aa 100644 --- a/perl-install/common.pm +++ b/perl-install/common.pm @@ -139,7 +139,7 @@ sub sync { &MDK::Common::System::sync } sub group_n_lm { my $n = shift; my @l; - push @l, [ splice(@_, 0, $n) ] while (@_); + push @l, [ splice(@_, 0, $n) ] while @_; @l } |