aboutsummaryrefslogtreecommitdiff
path: root/src/shared/Database/DBCStores.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/shared/Database/DBCStores.cpp
parentcda206aacc9cdd3b9038f7cecfb9b0a71558c86f (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.cpp2
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);
}