about summary refs log tree commit homepage
path: root/lib/PublicInbox/CodeSearchIdx.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/CodeSearchIdx.pm')
-rw-r--r--lib/PublicInbox/CodeSearchIdx.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/PublicInbox/CodeSearchIdx.pm b/lib/PublicInbox/CodeSearchIdx.pm
index bf410734..c1a1ee90 100644
--- a/lib/PublicInbox/CodeSearchIdx.pm
+++ b/lib/PublicInbox/CodeSearchIdx.pm
@@ -480,11 +480,11 @@ sub partition_refs ($$$) {
                         $seen = 0;
                 }
                 if ($DO_QUIT) {
-                        CORE::close($rfh);
+                        $rfh->close;
                         return ();
                 }
         }
-        CORE::close($rfh);
+        $rfh->close;
         return () if $DO_QUIT;
         if (!$? || (($? & 127) == POSIX::SIGPIPE && $seen > $SEEN_MAX)) {
                 my $n = $NCHANGE - $n0;
@@ -887,7 +887,7 @@ sub associate {
                         ++$score{"$ibx_id $_"} for @root_ids;
                 }
         }
-        CORE::close $rd or die "@join failed: $?=$?";
+        $rd->close or die "fatal: @join failed: \$?=$?";
         my $min = $self->{-opt}->{'assoc-min'} // 10;
         progress($self, scalar(keys %score).' potential pairings...');
         for my $k (keys %score) {