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/shared/Database/DBCStores.cpp | |
parent | cda206aacc9cdd3b9038f7cecfb9b0a71558c86f (diff) |
[7532] Avoid warnings at use size_t with printf fromat strings. Author: VladimirMangos
--HG--
branch : trunk
Diffstat (limited to 'src/shared/Database/DBCStores.cpp')
-rw-r--r-- | src/shared/Database/DBCStores.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/Database/DBCStores.cpp b/src/shared/Database/DBCStores.cpp index 6b59489f77e..ba61b028203 100644 --- a/src/shared/Database/DBCStores.cpp +++ b/src/shared/Database/DBCStores.cpp @@ -506,7 +506,7 @@ void LoadDBCStores(const std::string& dataPath) for(std::list<std::string>::iterator i = bad_dbc_files.begin(); i != bad_dbc_files.end(); ++i) str += *i + "\n"; - sLog.outError("\nSome required *.dbc files (%u from %d) not found or not compatible:\n%s",bad_dbc_files.size(),DBCFilesCount,str.c_str()); + sLog.outError("\nSome required *.dbc files (%u from %d) not found or not compatible:\n%s",(uint32)bad_dbc_files.size(),DBCFilesCount,str.c_str()); exit(1); } |