From 63f88ae09338b00a513f1a3d88ab6a62f587061a Mon Sep 17 00:00:00 2001
From: Melody Horn <melody@boringcactus.com>
Date: Sat, 3 Apr 2021 12:42:42 -0600
Subject: avoid redundant return

---
 src/makefile/functions.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src')

diff --git a/src/makefile/functions.rs b/src/makefile/functions.rs
index a22ec3b..8594046 100644
--- a/src/makefile/functions.rs
+++ b/src/makefile/functions.rs
@@ -70,7 +70,7 @@ pub fn expand_call(
             } else {
                 bail!("tried to eval something but no eval back-channel was available");
             }
-            return Ok(String::new());
+            Ok(String::new())
         }
 
         "origin" => {
-- 
cgit v1.2.3