diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2017-09-21 00:59:43 +0200 |
---|---|---|
committer | Yehonal <yehonal.azeroth@gmail.com> | 2017-09-21 00:59:43 +0200 |
commit | 77340773be04fad7f3d2d3da5f1c4681be365f7a (patch) | |
tree | faea1790cf1284f6b633bcf84cf36b820c31fecf /src/scripts/Commands/cs_misc.cpp | |
parent | 8ad3c15d638807be2e4ebf4cb8453c3b502bd5c9 (diff) |
Fixed gcc warnings
Diffstat (limited to 'src/scripts/Commands/cs_misc.cpp')
-rw-r--r-- | src/scripts/Commands/cs_misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/Commands/cs_misc.cpp b/src/scripts/Commands/cs_misc.cpp index edf4851914..058290c9e3 100644 --- a/src/scripts/Commands/cs_misc.cpp +++ b/src/scripts/Commands/cs_misc.cpp @@ -191,7 +191,7 @@ public: return false; } - if (tokens.size() != count+2) + if (tokens.size() != uint16(count+2)) { handler->PSendSysMessage("Invalid number of nicknames for this bracket."); handler->SetSentErrorMessage(true); |