From: Štěpán Němec Date: Mon, 28 Aug 2023 10:42:45 +0000 (+0200) Subject: spawn: remove distracting empty line X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da72fa0c8e3257ca6467bd9999cbb77a31ac4d13;p=thirdparty%2Fpublic-inbox.git spawn: remove distracting empty line If anything, it should have been before the $rlim declaration, not after, but the immediately preceding similar block has no empty line, either. --- diff --git a/lib/PublicInbox/Spawn.pm b/lib/PublicInbox/Spawn.pm index 6e33c712d..17d87f57c 100644 --- a/lib/PublicInbox/Spawn.pm +++ b/lib/PublicInbox/Spawn.pm @@ -340,7 +340,6 @@ sub spawn ($;$$) { $redir->[$child_fd] = $parent_fd // $child_fd; } my $rlim = []; - foreach my $l (@RLIMITS) { my $v = $opts->{$l} // next; my $r = eval "require BSD::Resource; BSD::Resource::$l();";