diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-28 00:55:22 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-28 00:55:22 +0100 |
commit | 80ecca0d053623584a8266157a77b1aa503dded3 (patch) | |
tree | ddfa08f7b1d6e4ec4818b1947e554de84909fcee /FICS/utils.c | |
parent | b738dc9a6af4e19f51b10db63aff83fb40540ae9 (diff) |
'unsigned' -> 'unsigned int'
Diffstat (limited to 'FICS/utils.c')
-rw-r--r-- | FICS/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |