Skip to content

Commit d84e8b1

Browse files
committed
Fix AArch64
1 parent dc7c0ae commit d84e8b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backtrace/dbghelp64.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ impl MyContext {
6767
#[cfg(target_arch = "aarch64")]
6868
impl MyContext {
6969
#[inline(always)]
70-
fn ip(&self) -> DWORD64 {
70+
fn ip(&self) -> u64 {
7171
self.0.Pc
7272
}
7373

7474
#[inline(always)]
75-
fn sp(&self) -> DWORD64 {
75+
fn sp(&self) -> u64 {
7676
self.0.Sp
7777
}
7878
}

0 commit comments

Comments
 (0)