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/LootMgr.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/LootMgr.cpp')
| -rw-r--r-- | src/game/LootMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/LootMgr.cpp b/src/game/LootMgr.cpp index ec1ebca5381..8a9bf99f503 100644 --- a/src/game/LootMgr.cpp +++ b/src/game/LootMgr.cpp @@ -169,7 +169,7 @@ void LootStore::LoadLootTable() Verify(); // Checks validity of the loot store sLog.outString(""); - sLog.outString( ">> Loaded %u loot definitions (%d templates)", count, m_LootTemplates.size()); + sLog.outString( ">> Loaded %u loot definitions (%lu templates)", count, (unsigned long)m_LootTemplates.size()); } else { |
