From ec747dc1097a5f80d220311dc89e9d6ec32cab31 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 28 Nov 2002 13:26:25 +0000 Subject: perl_checker adaptations --- perl-install/printer/common.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'perl-install/printer/common.pm') diff --git a/perl-install/printer/common.pm b/perl-install/printer/common.pm index 7742bcf71..f78d47b90 100644 --- a/perl-install/printer/common.pm +++ b/perl-install/printer/common.pm @@ -24,7 +24,7 @@ sub addentry { } } push(@lines, $entry) if $sectionfound && !$entryinserted; - return join ("\n", @lines); + return join "\n", @lines; } sub addsection { @@ -57,7 +57,7 @@ sub removeentry { } } } - return join ("", @lines); + return join "", @lines; } sub removesection { @@ -81,7 +81,7 @@ sub removesection { } } } - return join ("", @lines); + return join "", @lines; } 1; -- cgit v1.2.1