diff options
| author | Glenn Smith <glenn@vector35.com> | 2025-04-29 12:17:17 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2025-04-29 13:04:37 -0400 |
| commit | 9852603244671001892114359042093757709461 (patch) | |
| tree | 109e9712546b2ef49a0d6b3836614a4e4a36fb34 /lowlevelilinstruction.cpp | |
| parent | 5651090172297363543443832254117629267746 (diff) | |
Fix fmt formatting of IL instruction tokens
Diffstat (limited to 'lowlevelilinstruction.cpp')
| -rw-r--r-- | lowlevelilinstruction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lowlevelilinstruction.cpp b/lowlevelilinstruction.cpp index 21360bde..db085957 100644 --- a/lowlevelilinstruction.cpp +++ b/lowlevelilinstruction.cpp @@ -3765,7 +3765,7 @@ fmt::format_context::iterator fmt::formatter<LowLevelILInstruction>::format(cons for (auto& token: tokens) { - fmt::format_to(ctx.out(), token.text); + fmt::format_to(ctx.out(), "{}", token.text); } } else |
