diff options
author | Rival <dev.rival@mail.ru> | 2016-08-14 20:06:09 +0300 |
---|---|---|
committer | Shin <borzifrancesco@gmail.com> | 2016-08-14 19:06:09 +0200 |
commit | e2daeebd989e7b64d97118a9b0f0b15d20fe3cc5 (patch) | |
tree | 7f46254f6568ac4961f76548c290902797b176ef /src/scripts/Commands/cs_character.cpp | |
parent | 293818a8f8a74cff34b64c91d9201a75924c3b8b (diff) |
Fix warning on Windows. (#89)
Diffstat (limited to 'src/scripts/Commands/cs_character.cpp')
-rw-r--r-- | src/scripts/Commands/cs_character.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/Commands/cs_character.cpp b/src/scripts/Commands/cs_character.cpp index d78de158b9..0202a5444b 100644 --- a/src/scripts/Commands/cs_character.cpp +++ b/src/scripts/Commands/cs_character.cpp @@ -520,7 +520,7 @@ public: do{ uint64 _guid = result->Fetch()[0].GetUInt64(); char buff[20]; - sprintf(buff,"%u.dump", _guid); + sprintf(buff,"%I64u", _guid); switch(PlayerDumpWriter().WriteDump(buff, uint32(_guid))) { case DUMP_SUCCESS: |