From 8d11fb34defb48612c0ad5ab9a17cd72e5f9af88 Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Sat, 16 Dec 2023 12:25:02 +0100 Subject: [PATCH] Fix impl Display for MemoryType. --- common/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/common/src/lib.rs b/common/src/lib.rs index 972d234cf0..05d76bf1dd 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -66,6 +66,7 @@ impl std::fmt::Display for MemoryType { Self::Writeback => "wb", Self::Uncacheable => "uc", Self::WriteCombining => "wc", + Self::DeviceMemory => "dev", }) } }