From 383d72427c80f7eabecb248e40804b49974d294e Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Sat, 8 Jun 2024 13:35:38 -0700 Subject: [PATCH] ci(fuzz): Fix build errors in Debug implementations --- fuzz/fuzz_targets/fuzz_write.rs | 2 +- src/types.rs | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/fuzz/fuzz_targets/fuzz_write.rs b/fuzz/fuzz_targets/fuzz_write.rs index d7670ec7..f3e3cb3c 100755 --- a/fuzz/fuzz_targets/fuzz_write.rs +++ b/fuzz/fuzz_targets/fuzz_write.rs @@ -47,7 +47,7 @@ impl <'k> Debug for FileOperation<'k> { f.write_fmt(format_args!("let options = {:?};\n\ writer.start_file_from_path({:?}, options)?;\n", options, self.path))?; for content_slice in contents { - f.write_fmt("writer.write_all(&({ : ? }[..] as [u8]))?;\n", content_slice)?; + f.write_fmt(format_args!("writer.write_all(&({:?}[..] as [u8]))?;\n", content_slice))?; } f.write_str("drop(options);\n") }, diff --git a/src/types.rs b/src/types.rs index db08cc55..acf07eb7 100644 --- a/src/types.rs +++ b/src/types.rs @@ -93,8 +93,10 @@ impl Debug for DateTime { if *self == Self::default() { return f.write_str("DateTime::default()"); } - f.write_fmt(format_args!("DateTime::from_date_and_time({}, {}, {}, {}, {}, {})?", - self.year, self.month, self.day, self.hour, self.minute, self.second)) + f.write_fmt(format_args!( + "DateTime::from_date_and_time({}, {}, {}, {}, {}, {})?", + self.year, self.month, self.day, self.hour, self.minute, self.second + )) } }