From bc4186776aa55c42c61767997607e0892298744f Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Tue, 12 Nov 2024 18:16:29 -0500 Subject: [PATCH] fix: compiler warning (cherry picked from commit 015547c526f8e3ae9ed95c19dc7a13e2df2fd30d) --- cli/loader/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/loader/src/lib.rs b/cli/loader/src/lib.rs index 13b4fabf..31ef448c 100644 --- a/cli/loader/src/lib.rs +++ b/cli/loader/src/lib.rs @@ -846,7 +846,7 @@ impl Loader { format!("Failed to execute the C compiler with the following command:\n{command:?}") })?; - lock_file.unlock()?; + FileExt::unlock(lock_file)?; fs::remove_file(lock_path)?; if output.status.success() {