diff options
Diffstat (limited to 'components/script/dom/node.rs')
-rw-r--r-- | components/script/dom/node.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/node.rs b/components/script/dom/node.rs index aef4192dc6e..5e02dc3d0e6 100644 --- a/components/script/dom/node.rs +++ b/components/script/dom/node.rs @@ -2446,7 +2446,7 @@ impl HeapSizeOf for UniqueId { #[allow(unsafe_code)] fn heap_size_of_children(&self) -> usize { if let &Some(ref uuid) = unsafe { &*self.cell.get() } { - heap_size_of(&** uuid as *const Uuid as *const c_void) + unsafe { heap_size_of(&** uuid as *const Uuid as *const _) } } else { 0 } |