diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-11 13:29:44 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-11 13:29:44 +0000 |
commit | c1e398be894ecce6394bd76c99b76c022979ac62 (patch) | |
tree | 62f279c533f8b96547b3fbf261449705426bb189 /perl-install/interactive | |
parent | d545c394e5c9b2cab90b525c32de553e3d5bbfb8 (diff) | |
download | drakx-c1e398be894ecce6394bd76c99b76c022979ac62.tar drakx-c1e398be894ecce6394bd76c99b76c022979ac62.tar.gz drakx-c1e398be894ecce6394bd76c99b76c022979ac62.tar.bz2 drakx-c1e398be894ecce6394bd76c99b76c022979ac62.tar.xz drakx-c1e398be894ecce6394bd76c99b76c022979ac62.zip |
various small syntax enhancements to please perl_checker
Diffstat (limited to 'perl-install/interactive')
-rw-r--r-- | perl-install/interactive/stdio.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/stdio.pm b/perl-install/interactive/stdio.pm index 10e749205..737b966f7 100644 --- a/perl-install/interactive/stdio.pm +++ b/perl-install/interactive/stdio.pm @@ -115,7 +115,7 @@ ask_fromW_begin: print "* "; $common->{title} and print "$common->{title}\n"; - print map { "$_\n" } @{$common->{messages}}; + print(map { "$_\n" } @{$common->{messages}}); $predo_widget->($_) foreach @$l; if (listlength(@$l) > 30) { |