From 941e5b9dbd1c1dd6056bf4d5b2b057b0043ce63c Mon Sep 17 00:00:00 2001 From: megamage Date: Tue, 24 Mar 2009 17:38:14 -0600 Subject: [7532] Avoid warnings at use size_t with printf fromat strings. Author: VladimirMangos --HG-- branch : trunk --- src/shared/Database/DBCStores.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/shared/Database/DBCStores.cpp') 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::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); } -- cgit v1.2.3