We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bbc76e commit bce9ff5Copy full SHA for bce9ff5
testing/src/gdt.rs
@@ -13,7 +13,7 @@ lazy_static! {
13
static mut STACK: [u8; STACK_SIZE] = [0; STACK_SIZE];
14
15
let stack_start = VirtAddr::from_ptr(unsafe { &STACK });
16
- let stack_end = stack_start + STACK_SIZE;
+ let stack_end = stack_start + STACK_SIZE as u64;
17
stack_end
18
};
19
tss
0 commit comments