diff options
Diffstat (limited to 'src/window')
| -rw-r--r-- | src/window/mapped.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window/mapped.rs b/src/window/mapped.rs index 54c045b3..60cf7cd9 100644 --- a/src/window/mapped.rs +++ b/src/window/mapped.rs @@ -105,8 +105,8 @@ impl MappedId { MappedId(MAPPED_ID_COUNTER.next()) } - pub fn get(self) -> u32 { - self.0 + pub fn get(self) -> u64 { + u64::from(self.0) } } |
