diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-13 14:40:56 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-13 14:40:56 +0000 |
commit | 602848d7fba65f080b8a5a3f46b881b48320e4f5 (patch) | |
tree | 618368bc5473795b0616a0d46f21274744fe13ba /MDK/Common/DataStructure.pm | |
parent | 3cfc42b677f1599e57e63ae189f5d39d1e5d8f5e (diff) | |
download | perl-MDK-Common-602848d7fba65f080b8a5a3f46b881b48320e4f5.tar perl-MDK-Common-602848d7fba65f080b8a5a3f46b881b48320e4f5.tar.gz perl-MDK-Common-602848d7fba65f080b8a5a3f46b881b48320e4f5.tar.bz2 perl-MDK-Common-602848d7fba65f080b8a5a3f46b881b48320e4f5.tar.xz perl-MDK-Common-602848d7fba65f080b8a5a3f46b881b48320e4f5.zip |
add/remove spaces to make perl_checker happy
Diffstat (limited to 'MDK/Common/DataStructure.pm')
-rw-r--r-- | MDK/Common/DataStructure.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MDK/Common/DataStructure.pm b/MDK/Common/DataStructure.pm index 3da59fe..a48afe4 100644 --- a/MDK/Common/DataStructure.pm +++ b/MDK/Common/DataStructure.pm @@ -153,7 +153,7 @@ sub list2kv { sub group_by2 { my @l; - for (my $i = 0; $i < @_ ; $i += 2) { + for (my $i = 0; $i < @_; $i += 2) { push @l, [ $_[$i], $_[$i+1] ]; } @l; |