From 80ecca0d053623584a8266157a77b1aa503dded3 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Thu, 28 Dec 2023 00:55:22 +0100 Subject: 'unsigned' -> 'unsigned int' --- FICS/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'FICS/utils.c') diff --git a/FICS/utils.c b/FICS/utils.c index 90f84ff..eb37807 100644 --- a/FICS/utils.c +++ b/FICS/utils.c @@ -736,13 +736,13 @@ tenth_secs(void) * ratings. 1 sec since 1970 fits into a 32 bit int OK. */ PUBLIC int -untenths(unsigned tenths) +untenths(unsigned int tenths) { return (tenths / 10 + 331939277 + 0xffffffff / 10 + 1); } PUBLIC char * -tenth_str(unsigned t, int spaces) +tenth_str(unsigned int t, int spaces) { return hms((t + 5) / 10, 0, 1, spaces); } -- cgit v1.2.3