When trying to output a pointer address using: ``` rust let ptr = 0xdeadbeef as *const u8; pr_info!("ptr: {:p}", ptr); ``` It incorrectly outputs a stack address with a 0xffffc prefix instead of 0xdeadbeef.