[7532] Avoid warnings at use size_t with printf fromat strings.

This commit is contained in:
VladimirMangos 2009-03-24 06:02:49 +03:00
parent b8b79d67ad
commit f4482f247f
12 changed files with 32 additions and 32 deletions

View file

@ -478,7 +478,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;
}