diff options
author | Naios <naios-dev@live.de> | 2015-03-24 22:00:19 +0100 |
---|---|---|
committer | Naios <naios-dev@live.de> | 2015-03-24 22:02:08 +0100 |
commit | 0778cc3332a16e26effb399889ec824144188d19 (patch) | |
tree | 3c0d81dea1870db57f74b0f4ec77b8c6712002fd /src/server/shared/Updater/UpdateFetcher.cpp | |
parent | d37f52c93e000c581ea21089a87fbafd2c192349 (diff) |
Core/DBUpdater: Use correct formatter for size_t
* thanks @DDuarte pointing this out.
(cherry picked from commit b2b8de5786364d81fbce643e8f00bcc0129ed760)
Diffstat (limited to 'src/server/shared/Updater/UpdateFetcher.cpp')
-rw-r--r-- | src/server/shared/Updater/UpdateFetcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/shared/Updater/UpdateFetcher.cpp b/src/server/shared/Updater/UpdateFetcher.cpp index b93ca614729..2b12f39780c 100644 --- a/src/server/shared/Updater/UpdateFetcher.cpp +++ b/src/server/shared/Updater/UpdateFetcher.cpp @@ -309,7 +309,7 @@ uint32 UpdateFetcher::Update(bool const redundancyChecks, bool const allowRehash CleanUp(applied); else { - TC_LOG_ERROR("sql.updates", "Cleanup is disabled! There are %zu dirty files that were applied to your database " \ + TC_LOG_ERROR("sql.updates", "Cleanup is disabled! There are " SZFMTD " dirty files that were applied to your database " \ "but are now missing in your source directory!", applied.size()); } } |