diff options
author | Naios <naios-dev@live.de> | 2015-03-22 01:28:50 +0100 |
---|---|---|
committer | Naios <naios-dev@live.de> | 2015-03-22 01:28:50 +0100 |
commit | 8e48ef7863c5018aa185913ce6a616e46ef5b17e (patch) | |
tree | 91ce5294560649151a5a90ddf13e8901a8a89379 /src/server/shared/Updater/UpdateFetcher.h | |
parent | 3799d454b36ef55148280311e8f096e877d12be8 (diff) |
Core/DBUpdater: Use correct uint64 to store timestamps.
* Thanks @Shauren for pointing out.
* Also removes an invalid argument thanks @jackpoz for noticing.
Diffstat (limited to 'src/server/shared/Updater/UpdateFetcher.h')
-rw-r--r-- | src/server/shared/Updater/UpdateFetcher.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/shared/Updater/UpdateFetcher.h b/src/server/shared/Updater/UpdateFetcher.h index c11cfbf7c82..f545c232a94 100644 --- a/src/server/shared/Updater/UpdateFetcher.h +++ b/src/server/shared/Updater/UpdateFetcher.h @@ -59,7 +59,7 @@ private: State const state; - uint32 const timestamp; + uint64 const timestamp; static inline State StateConvert(std::string const& state) { |