diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-09-09 03:57:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-09-09 03:57:07 +0300 |
commit | 82aebd59872d5d59327c73fe4c52dbef312bbef9 (patch) | |
tree | 417de7a129db939d2ec03bbb3ed586a9953aa215 /src/const/utils | |
parent | 27ccf1fb1fc7bf587cace186c18fbbcf3141b548 (diff) | |
download | mv-82aebd59872d5d59327c73fe4c52dbef312bbef9.tar.gz mv-82aebd59872d5d59327c73fe4c52dbef312bbef9.tar.bz2 mv-82aebd59872d5d59327c73fe4c52dbef312bbef9.tar.xz mv-82aebd59872d5d59327c73fe4c52dbef312bbef9.zip |
Fix code style.
Diffstat (limited to 'src/const/utils')
-rw-r--r-- | src/const/utils/perfstat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/const/utils/perfstat.h b/src/const/utils/perfstat.h index fac9f7382..48ca611af 100644 --- a/src/const/utils/perfstat.h +++ b/src/const/utils/perfstat.h @@ -23,8 +23,8 @@ #include "localconsts.h" -static const int PERFSTAT_MAX = 120; -static const int PERFSTAT_LAST_STAT = 13; -static const int PERFSTAT_FPS_STAT = 12; +static const size_t PERFSTAT_MAX = 120U; +static const size_t PERFSTAT_LAST_STAT = 13U; +static const size_t PERFSTAT_FPS_STAT = 12U; #endif // CONST_UTILS_PERFSTAT_H |