diff options
| author | megamage <none@none> | 2009-03-24 17:38:14 -0600 |
|---|---|---|
| committer | megamage <none@none> | 2009-03-24 17:38:14 -0600 |
| commit | 941e5b9dbd1c1dd6056bf4d5b2b057b0043ce63c (patch) | |
| tree | 2bc2024abe3d327e568984f85e2b8247bd16ec68 /src/game/AuctionHouseHandler.cpp | |
| parent | cda206aacc9cdd3b9038f7cecfb9b0a71558c86f (diff) | |
[7532] Avoid warnings at use size_t with printf fromat strings. Author: VladimirMangos
--HG--
branch : trunk
Diffstat (limited to 'src/game/AuctionHouseHandler.cpp')
| -rw-r--r-- | src/game/AuctionHouseHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/AuctionHouseHandler.cpp b/src/game/AuctionHouseHandler.cpp index dcf462de46a..ef9d8d92682 100644 --- a/src/game/AuctionHouseHandler.cpp +++ b/src/game/AuctionHouseHandler.cpp @@ -502,7 +502,7 @@ void WorldSession::HandleAuctionListBidderItems( WorldPacket & recv_data ) recv_data >> outbiddedCount; if (recv_data.size() != (16 + outbiddedCount * 4 )) { - sLog.outError("Client sent bad opcode!!! with count: %u and size : %d (mustbe: %d", outbiddedCount, recv_data.size(),(16 + outbiddedCount * 4 )); + sLog.outError("Client sent bad opcode!!! with count: %u and size : %lu (must be: %u)", outbiddedCount, (unsigned long)recv_data.size(),(16 + outbiddedCount * 4 )); outbiddedCount = 0; } |
