aboutsummaryrefslogtreecommitdiffstats
path: root/src/configparser.cpp
diff options
context:
space:
mode:
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);
}
}