From 7f2ec99b62ebdaac50e68c46e7638277274273d8 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Sun, 16 Mar 2025 12:31:07 +0100 Subject: Changed the parameter type of untenths() --- FICS/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'FICS/utils.c') 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); } -- cgit v1.2.3