diff options
| author | Michael Krasnitski <michael.krasnitski@gmail.com> | 2024-02-11 19:03:02 -0500 |
|---|---|---|
| committer | Kyle Martin <krm504@nyu.edu> | 2024-03-18 17:46:37 -0400 |
| commit | bb04b38ea5d685dc44679e36ac19c5de2a41fca2 (patch) | |
| tree | 2b89b9f3e3e24c35226028265464bd973779f26f /rust/examples/hlil_lifter | |
| parent | e66a44d96a1de93978d7db6caa874a485e3088e2 (diff) | |
Fix HLIL examples
Diffstat (limited to 'rust/examples/hlil_lifter')
| -rw-r--r-- | rust/examples/hlil_lifter/src/main.rs | 2 |
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?}"); |
