summaryrefslogtreecommitdiff
path: root/rust/examples/hlil_lifter/src
diff options
context:
space:
mode:
Diffstat (limited to 'rust/examples/hlil_lifter/src')
-rw-r--r--rust/examples/hlil_lifter/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/examples/hlil_lifter/src/main.rs b/rust/examples/hlil_lifter/src/main.rs
index 2ac034f4..36984ef1 100644
--- a/rust/examples/hlil_lifter/src/main.rs
+++ b/rust/examples/hlil_lifter/src/main.rs
@@ -38,7 +38,7 @@ fn main() {
for instr in block.iter() {
// Uplift the instruction into a native rust format
let lifted = instr.lift();
- let address = instr.address();
+ let address = instr.address;
// print the lifted instruction
println!("{address:08x}: {lifted:x?}");