diff options
Diffstat (limited to 'perl-install/printer/common.pm')
-rw-r--r-- | perl-install/printer/common.pm | 6 |
1 files changed, 3 insertions, 3 deletions
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; |