aboutsummaryrefslogtreecommitdiff
path: root/src/configparser.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2025-12-27 09:50:56 +0000
committerGravatar Sadie Powell2025-12-27 09:50:56 +0000
commita8d919a79ab749117b51d79e0cedcf586d03094d (patch)
tree12336a24d77e833244f7422b7802487411977ed2 /src/configparser.cpp
parentMerge branch 'insp4' into master. (diff)
Fix some issues with the previous merge.
Diffstat (limited to 'src/configparser.cpp')
-rw-r--r--src/configparser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configparser.cpp b/src/configparser.cpp
index 45f96f66a..cd7a09145 100644
--- a/src/configparser.cpp
+++ b/src/configparser.cpp
@@ -42,9 +42,9 @@ namespace
std::string GetPrintable(int chr)
{
if (isprint(chr))
- return INSP_FORMAT("{} (0x{:x})", (char)chr, chr);
+ return FMT::format("{} (0x{:x})", (char)chr, chr);
else
- return INSP_FORMAT("0x{:x}", chr);
+ return FMT::format("0x{:x}", chr);
}
}