From e111b57c425a7c55635dc6dd2c39878f72bf5fc9 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Mon, 12 Apr 2021 05:27:43 -0600 Subject: [PATCH] t/loc_tools.pl: White-space only --- t/loc_tools.pl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/t/loc_tools.pl b/t/loc_tools.pl index e39406960e78..b96eca366e5f 100644 --- a/t/loc_tools.pl +++ b/t/loc_tools.pl @@ -394,7 +394,9 @@ ($;$) my $input_categories = shift; my $allow_incompatible = shift // 0; - my @categories = (ref $input_categories) ? $input_categories->@* : $input_categories; + my @categories = (ref $input_categories) + ? $input_categories->@* + : $input_categories; return unless locales_enabled(\@categories); # Note, the subroutine call above converts the $categories into a form @@ -585,7 +587,7 @@ ($) } die "Couldn't restore locale '$save_locale'" - unless setlocale(&POSIX::LC_CTYPE(), $save_locale); + unless setlocale(&POSIX::LC_CTYPE(), $save_locale); return $ret; }