Skip to content

Commit

Permalink
x86
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Dec 10, 2024
1 parent 9428190 commit f37a320
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/tests/misc/arch/tests/sys.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ fn test() {
assert_eq!(4, core::mem::size_of::<KNONVOLATILE_CONTEXT_POINTERS>());

use windows_sys::Wdk::Foundation::ACCESS_STATE;
assert_eq!(160, core::mem::size_of::<ACCESS_STATE>());
assert_eq!(8, core::mem::align_of::<ACCESS_STATE>());
assert_eq!(116, core::mem::size_of::<ACCESS_STATE>());
assert_eq!(4, core::mem::align_of::<ACCESS_STATE>());
}
4 changes: 2 additions & 2 deletions crates/tests/misc/arch/tests/win.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ fn test() {
assert_eq!(4, core::mem::size_of::<KNONVOLATILE_CONTEXT_POINTERS>());

use windows::Wdk::Foundation::ACCESS_STATE;
assert_eq!(160, core::mem::size_of::<ACCESS_STATE>());
assert_eq!(8, core::mem::align_of::<ACCESS_STATE>());
assert_eq!(116, core::mem::size_of::<ACCESS_STATE>());
assert_eq!(4, core::mem::align_of::<ACCESS_STATE>());
}

0 comments on commit f37a320

Please sign in to comment.