From f98d003e354a1792117b7cbc771d1dd91475a156 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 18 Mar 2011 17:48:29 +0200 Subject: Fix most old style cast except manaserv and libxml2 defines. --- src/commandhandler.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/commandhandler.cpp') diff --git a/src/commandhandler.cpp b/src/commandhandler.cpp index 51d1bdf78..8fc1b8ca3 100644 --- a/src/commandhandler.cpp +++ b/src/commandhandler.cpp @@ -1178,7 +1178,10 @@ void CommandHandler::handleCacheInfo(const std::string &args _UNUSED_, for (int f = 0; f < 256; f ++) { if (!cache[f].empty()) - str += strprintf("%d: %u, ", f, (unsigned int)cache[f].size()); + { + str += strprintf("%d: %u, ", f, + static_cast(cache[f].size())); + } } debugChatTab->chatLog(str); #ifdef DEBUG_FONT_COUNTERS -- cgit v1.2.3-60-g2f50