summaryrefslogtreecommitdiff
path: root/rust/src/hlil/operation.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src/hlil/operation.rs')
-rw-r--r--rust/src/hlil/operation.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/hlil/operation.rs b/rust/src/hlil/operation.rs
index 965d9517..ee0d437b 100644
--- a/rust/src/hlil/operation.rs
+++ b/rust/src/hlil/operation.rs
@@ -9,7 +9,7 @@ use super::HighLevelILLiftedInstruction;
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct GotoLabel {
pub(crate) function: Ref<Function>,
- pub(crate) target: u64,
+ pub target: u64,
}
impl GotoLabel {