diff options
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); } |