summaryrefslogtreecommitdiff
path: root/lowlevelilinstruction.cpp
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2025-04-29 12:17:17 -0400
committerGlenn Smith <glenn@vector35.com>2025-04-29 13:04:37 -0400
commit9852603244671001892114359042093757709461 (patch)
tree109e9712546b2ef49a0d6b3836614a4e4a36fb34 /lowlevelilinstruction.cpp
parent5651090172297363543443832254117629267746 (diff)
Fix fmt formatting of IL instruction tokens
Diffstat (limited to 'lowlevelilinstruction.cpp')
-rw-r--r--lowlevelilinstruction.cpp2
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