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/LootHandler.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/LootHandler.cpp')
-rw-r--r-- | src/game/LootHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/LootHandler.cpp b/src/game/LootHandler.cpp index 5015a01c064..6aded9b1f97 100644 --- a/src/game/LootHandler.cpp +++ b/src/game/LootHandler.cpp @@ -490,7 +490,7 @@ void WorldSession::HandleLootMasterGiveOpcode( WorldPacket & recv_data ) if (slotid > pLoot->items.size()) { - sLog.outDebug("AutoLootItem: Player %s might be using a hack! (slot %d, size %d)",GetPlayer()->GetName(), slotid, pLoot->items.size()); + sLog.outDebug("AutoLootItem: Player %s might be using a hack! (slot %d, size %lu)",GetPlayer()->GetName(), slotid, (unsigned long)pLoot->items.size()); return; } |