From 015547c526f8e3ae9ed95c19dc7a13e2df2fd30d Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Tue, 12 Nov 2024 18:16:29 -0500 Subject: [PATCH] fix: compiler warning --- 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 4a566099..9f83b521 100644 --- a/cli/loader/src/lib.rs +++ b/cli/loader/src/lib.rs @@ -853,7 +853,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() {