]> git.ipfire.org Git - thirdparty/public-inbox.git/commitdiff
spawn: remove distracting empty line
authorŠtěpán Němec <stepnem@smrk.net>
Mon, 28 Aug 2023 10:42:45 +0000 (12:42 +0200)
committerEric Wong <e@80x24.org>
Mon, 28 Aug 2023 21:32:30 +0000 (21:32 +0000)
If anything, it should have been before the $rlim declaration, not
after, but the immediately preceding similar block has no empty line,
either.

lib/PublicInbox/Spawn.pm

index 6e33c712d8d2663c857836189315cda399e9a373..17d87f57cb38e256b1b846dbb519e648211e24e2 100644 (file)
@@ -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();";