diff options
author | megamage <none@none> | 2009-07-12 17:52:27 +0800 |
---|---|---|
committer | megamage <none@none> | 2009-07-12 17:52:27 +0800 |
commit | b5d802b70c2581583eb941765b25b85119b7391e (patch) | |
tree | 8a7c2b15ce4c6a3d04f068259c34179bc3c9060b /src/game/DBCStores.cpp | |
parent | 5e22d496aef731be5a765d843b05aca40222a6ec (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.cpp | 2 |
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); } |