ci(fuzz): Fix build errors in Debug implementations

This commit is contained in:
Chris Hennick 2024-06-08 13:35:38 -07:00
parent 2333a847f7
commit 383d72427c
No known key found for this signature in database
GPG key ID: DA47AABA4961C509
2 changed files with 5 additions and 3 deletions

View file

@ -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")
},

View file

@ -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
))
}
}