From 7bb1d9d190dca45b08b2e429b5f1fb8e635184ba Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Sun, 14 May 2023 18:43:19 -0700 Subject: [PATCH] Bug fix --- fuzz/fuzz_targets/fuzz_write.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/fuzz/fuzz_targets/fuzz_write.rs b/fuzz/fuzz_targets/fuzz_write.rs index ce9f213c..d0c3aa65 100644 --- a/fuzz/fuzz_targets/fuzz_write.rs +++ b/fuzz/fuzz_targets/fuzz_write.rs @@ -33,10 +33,9 @@ pub struct FileOperation { impl FileOperation { fn referenceable_name(&self) -> String { - if let BasicFileOperation::WriteDirectory(_) = self.basic { - if !self.name.ends_with('\\') && !self.name.ends_with('/') { - return self.name.to_owned() + "/"; - } + if let BasicFileOperation::WriteDirectory(_) = self.basic + && !self.name.ends_with('\\') && !self.name.ends_with('/') { + return self.name.to_owned() + "/"; } else { self.name.to_owned() }