aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/utils.c
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-28 00:55:22 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-28 00:55:22 +0100
commit80ecca0d053623584a8266157a77b1aa503dded3 (patch)
treeddfa08f7b1d6e4ec4818b1947e554de84909fcee /FICS/utils.c
parentb738dc9a6af4e19f51b10db63aff83fb40540ae9 (diff)
'unsigned' -> 'unsigned int'
Diffstat (limited to 'FICS/utils.c')
-rw-r--r--FICS/utils.c4
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);
}