Remove unnecessary raw marker

Co-Authored-By: str4d <thestr4d@gmail.com>
This commit is contained in:
Eirik Ogilvie-Wigley
2019-08-21 16:14:28 -06:00
committed by GitHub
parent 53182aa08e
commit d63fa334ff

View File

@@ -75,9 +75,9 @@ pub struct FsRepr(pub [u64; 4]);
impl ::std::fmt::Display for FsRepr {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
r#write!(f, "0x")?;
write!(f, "0x")?;
for i in self.0.iter().rev() {
r#write!(f, "{:016x}", *i)?;
write!(f, "{:016x}", *i)?;
}
Ok(())