aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/utils.c
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2025-03-16 12:31:07 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2025-03-16 12:31:07 +0100
commit7f2ec99b62ebdaac50e68c46e7638277274273d8 (patch)
tree93976600bfb8b6114c05fc4fa4af31e761719294 /FICS/utils.c
parent87018218e5c473f855e677b45d17d2828c7e834e (diff)
Changed the parameter type of untenths()
Diffstat (limited to 'FICS/utils.c')
-rw-r--r--FICS/utils.c2
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);
}