aboutsummaryrefslogtreecommitdiff
path: root/src/game/DBCStores.cpp
diff options
context:
space:
mode:
authormegamage <none@none>2009-07-12 17:52:27 +0800
committermegamage <none@none>2009-07-12 17:52:27 +0800
commitb5d802b70c2581583eb941765b25b85119b7391e (patch)
tree8a7c2b15ce4c6a3d04f068259c34179bc3c9060b /src/game/DBCStores.cpp
parent5e22d496aef731be5a765d843b05aca40222a6ec (diff)
[8151] Fixed some format warnings and typos. Author: Win32
--HG-- branch : trunk
Diffstat (limited to 'src/game/DBCStores.cpp')
-rw-r--r--src/game/DBCStores.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/DBCStores.cpp b/src/game/DBCStores.cpp
index f618b8cfb8c..d35087c324a 100644
--- a/src/game/DBCStores.cpp
+++ b/src/game/DBCStores.cpp
@@ -191,7 +191,7 @@ inline void LoadDBC(uint32& availableDbcLocales,barGoLink& bar, StoreProblemList
if(f)
{
char buf[100];
- snprintf(buf,100," (exist, but have %d fields instead %d) Wrong client version DBC file?",storage.GetFieldCount(),strlen(storage.GetFormat()));
+ snprintf(buf,100," (exist, but have %d fields instead " SIZEFMTD ") Wrong client version DBC file?",storage.GetFieldCount(),strlen(storage.GetFormat()));
errlist.push_back(dbc_filename + buf);
fclose(f);
}