diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-09 21:41:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-09 21:41:40 +0300 |
commit | 76ac55355e78bfa42474a898202a51d20f0f7f73 (patch) | |
tree | 9cccde9298e6d35a489896afd2898b57eb8ca99a /src/client.cpp | |
parent | 97943710d847ddb2b52099330f1961bda127e37b (diff) | |
download | plus-76ac55355e78bfa42474a898202a51d20f0f7f73.tar.gz plus-76ac55355e78bfa42474a898202a51d20f0f7f73.tar.bz2 plus-76ac55355e78bfa42474a898202a51d20f0f7f73.tar.xz plus-76ac55355e78bfa42474a898202a51d20f0f7f73.zip |
Fix wrong type usage. int -> time_t.
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.cpp b/src/client.cpp index ca48e4645..4b6b3118f 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -196,7 +196,7 @@ bool isSafeMode = false; int serverVersion = 0; int packetVersion = 0; unsigned int tmwServerVersion = 0; -int start_time; +time_t start_time; unsigned int mLastHost = 0; unsigned long mSearchHash = 0; int textures_count = 0; |