aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiacomo Pozzoni <giacomopoz@gmail.com>2019-08-02 08:08:11 +0200
committerGiacomo Pozzoni <giacomopoz@gmail.com>2019-08-02 08:08:11 +0200
commit543fe77d2e9d8fb94d706513d15981f8a4527e32 (patch)
tree81d0be3c98f38f3b7a3e8bce65e08128ca677b6c
parent5e9b85099753af1e56fc34e69ee8013bcf1cac56 (diff)
Core/Misc: Fix build warning
-rw-r--r--src/server/game/Chat/Channels/ChannelMgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Chat/Channels/ChannelMgr.cpp b/src/server/game/Chat/Channels/ChannelMgr.cpp
index 5fe43069310..5031ce50ea2 100644
--- a/src/server/game/Chat/Channels/ChannelMgr.cpp
+++ b/src/server/game/Chat/Channels/ChannelMgr.cpp
@@ -80,7 +80,7 @@ ChannelMgr::~ChannelMgr()
ChannelMgr* mgr = forTeam(team);
if (!mgr)
{
- TC_LOG_ERROR("server.loading", "Failed to load custom chat channel '%s' from database - invalid team %u. Deleted.", dbName.c_str());
+ TC_LOG_ERROR("server.loading", "Failed to load custom chat channel '%s' from database - invalid team %u. Deleted.", dbName.c_str(), team);
toDelete.push_back({ dbName, team });
continue;
}