From c7709217f72bc4711ff47904c51be1a3f25bf825 Mon Sep 17 00:00:00 2001 From: Ryan Snyder Date: Wed, 16 Jul 2025 12:43:48 -0400 Subject: pseudo-c/rust: fix member index hint in field resolution --- lang/rust/pseudorust.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lang/rust/pseudorust.cpp') 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 -- cgit v1.3.1