diff options
author | Simon Ser <contact@emersion.fr> | 2022-11-23 15:56:37 +0100 |
---|---|---|
committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2022-11-25 16:15:29 +0000 |
commit | 769cabbadf295fbe26cd2c3eb6efd5233c4d14e8 (patch) | |
tree | 4738bca913f958c615b84bf34de552211199609d /include/util | |
parent | fb4fb3bac2c7a73baf773cc6a0bba486f1c227b4 (diff) |
util/time: use int64_t return value for get_current_time_msec()
0xFFFFFFFF milliseconds is 4,294,967,295 ms so about 50 days.
A little bit too close for comfort.
Use int64_t instead of uint64_t to avoid C's implicit conversion
footguns in computations.
Diffstat (limited to 'include/util')
-rw-r--r-- | include/util/time.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/util/time.h b/include/util/time.h index 287698de..890fe55f 100644 --- a/include/util/time.h +++ b/include/util/time.h @@ -6,7 +6,7 @@ /** * Get the current time, in milliseconds. */ -uint32_t get_current_time_msec(void); +int64_t get_current_time_msec(void); /** * Convert a timespec to milliseconds. |