diff options
| author | Ryan Snyder <ryan@vector35.com> | 2025-07-16 12:43:48 -0400 |
|---|---|---|
| committer | Ryan Snyder <ryan@vector35.com> | 2025-07-16 12:43:48 -0400 |
| commit | c7709217f72bc4711ff47904c51be1a3f25bf825 (patch) | |
| tree | 4a09c2816798dc1f8e820bd8ee83c74c900b3559 /lang/rust/pseudorust.cpp | |
| parent | 0fdf63426e186102906c1fb8b8e7107c058023ae (diff) | |
pseudo-c/rust: fix member index hint in field resolution
Diffstat (limited to 'lang/rust/pseudorust.cpp')
| -rw-r--r-- | lang/rust/pseudorust.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/rust/pseudorust.cpp b/lang/rust/pseudorust.cpp index 0acb10cd..12f58bc1 100644 --- a/lang/rust/pseudorust.cpp +++ b/lang/rust/pseudorust.cpp @@ -522,8 +522,8 @@ void PseudoRustFunction::AppendFieldTextTokens(const HighLevelILInstruction& var tokens.Append(FieldNameToken, member.name, structOffset + member.offset, 0, 0, BN_FULL_CONFIDENCE, nameList); - }), - memberIndexHint) + }, + memberIndexHint)) return; // Part of structure but no defined field, use __offset syntax |
