diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2025-03-16 12:31:07 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2025-03-16 12:31:07 +0100 |
commit | 7f2ec99b62ebdaac50e68c46e7638277274273d8 (patch) | |
tree | 93976600bfb8b6114c05fc4fa4af31e761719294 /FICS/utils.c | |
parent | 87018218e5c473f855e677b45d17d2828c7e834e (diff) |
Changed the parameter type of untenths()
Diffstat (limited to 'FICS/utils.c')
-rw-r--r-- | FICS/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/utils.c b/FICS/utils.c index 05323e5..66b7d56 100644 --- a/FICS/utils.c +++ b/FICS/utils.c @@ -764,7 +764,7 @@ tenth_secs(void) * 2024-11-23 maxxe: changed the return type to 'time_t' */ PUBLIC time_t -untenths(unsigned int tenths) +untenths(uint64_t tenths) { return (tenths / 10 + 331939277 + 0xffffffff / 10 + 1); } |