From b3ba8f81d1296585b710512c3cc2e9697e2c1298 Mon Sep 17 00:00:00 2001 From: BinDiff Authors Date: Mon, 6 Oct 2025 01:18:47 -0700 Subject: [PATCH] Use non-pointer version of `absl::MutexLock`'s constructor PiperOrigin-RevId: 815604545 Change-Id: If8ccbcfd5badd0876272bcd9bf2e45b039cc3f1a --- main_portable.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main_portable.cc b/main_portable.cc index 695832bf..5d5845f9 100644 --- a/main_portable.cc +++ b/main_portable.cc @@ -213,7 +213,7 @@ void DifferThread::operator()() { Timer<> timer; { // Pop pair from todo queue. - absl::MutexLock lock(&g_queue_mutex); + absl::MutexLock lock(g_queue_mutex); if (file_queue_->empty()) { break; }