diff options
| author | 2025-12-27 09:50:56 +0000 | |
|---|---|---|
| committer | 2025-12-27 09:50:56 +0000 | |
| commit | a8d919a79ab749117b51d79e0cedcf586d03094d (patch) | |
| tree | 12336a24d77e833244f7422b7802487411977ed2 /src/configparser.cpp | |
| parent | Merge branch 'insp4' into master. (diff) | |
Fix some issues with the previous merge.
Diffstat (limited to 'src/configparser.cpp')
| -rw-r--r-- | src/configparser.cpp | 4 |
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); } } |
