Fix impl Display for MemoryType.

This commit is contained in:
4lDO2
2023-12-16 12:25:02 +01:00
parent 2e1e007836
commit 8d11fb34de
+1
View File
@@ -66,6 +66,7 @@ impl std::fmt::Display for MemoryType {
Self::Writeback => "wb",
Self::Uncacheable => "uc",
Self::WriteCombining => "wc",
Self::DeviceMemory => "dev",
})
}
}