diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-04-25 22:18:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-04-25 22:18:26 +0300 |
commit | 853757df15383c2e9cc33023dc04a256c458e671 (patch) | |
tree | f12cf49d6ddc17b6b4fc96d066359872b108f144 /src/commands.cpp | |
parent | 8e57e80d73a58077615924d50ac206d19efddae6 (diff) | |
download | plus-853757df15383c2e9cc33023dc04a256c458e671.tar.gz plus-853757df15383c2e9cc33023dc04a256c458e671.tar.bz2 plus-853757df15383c2e9cc33023dc04a256c458e671.tar.xz plus-853757df15383c2e9cc33023dc04a256c458e671.zip |
fix some code style by cpplint.
Diffstat (limited to 'src/commands.cpp')
-rw-r--r-- | src/commands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 8f03780ba..3ef4dbd40 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -1101,7 +1101,7 @@ impHandler0(testsdlfont) delete nullGraphics; delete font; - long int diff = (static_cast<long long int>( + int64_t diff = (static_cast<long long int>( time2.tv_sec) * 1000000000LL + static_cast<long long int>( time2.tv_nsec)) / 100000 - (static_cast<long long int>( time1.tv_sec) * 1000000000LL + static_cast<long long int>( |