aboutsummaryrefslogtreecommitdiff
path: root/src/game/LootHandler.cpp
diff options
context:
space:
mode:
authormegamage <none@none>2009-03-24 17:38:14 -0600
committermegamage <none@none>2009-03-24 17:38:14 -0600
commit941e5b9dbd1c1dd6056bf4d5b2b057b0043ce63c (patch)
tree2bc2024abe3d327e568984f85e2b8247bd16ec68 /src/game/LootHandler.cpp
parentcda206aacc9cdd3b9038f7cecfb9b0a71558c86f (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.cpp2
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;
}