summaryrefslogtreecommitdiff
path: root/src/commandhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/commandhandler.cpp')
-rw-r--r--src/commandhandler.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/commandhandler.cpp b/src/commandhandler.cpp
index a20944ff2..41b901997 100644
--- a/src/commandhandler.cpp
+++ b/src/commandhandler.cpp
@@ -1082,7 +1082,9 @@ void CommandHandler::handleCacheInfo(const std::string &args _UNUSED_,
debugChatTab->chatLog(strprintf("%s %d", _("Cache size:"), all));
#ifdef DEBUG_FONT_COUNTERS
debugChatTab->chatLog("");
- debugChatTab->chatLog(strprintf("%s %d", _("Created:"), font->getCreateCounter()));
- debugChatTab->chatLog(strprintf("%s %d", _("Deleted:"), font->getDeleteCounter()));
+ debugChatTab->chatLog(strprintf("%s %d",
+ _("Created:"), font->getCreateCounter()));
+ debugChatTab->chatLog(strprintf("%s %d",
+ _("Deleted:"), font->getDeleteCounter()));
#endif
}