aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--FICS/utils.c5
-rw-r--r--FICS/utils.h2
2 files changed, 5 insertions, 2 deletions
diff --git a/FICS/utils.c b/FICS/utils.c
index b7072c6..337a838 100644
--- a/FICS/utils.c
+++ b/FICS/utils.c
@@ -762,7 +762,10 @@ tenth_secs(void)
* seconds, because vek didn't read utils.c when he programmed new
* ratings. 1 sec since 1970 fits into a 32 bit int OK.
*/
-PUBLIC int
+/*
+ * 2024-11-23 maxxe: changed the return type to 'time_t'
+ */
+PUBLIC time_t
untenths(unsigned int tenths)
{
return (tenths / 10 + 331939277 + 0xffffffff / 10 + 1);
diff --git a/FICS/utils.h b/FICS/utils.h
index 4b51bbe..b5f77c6 100644
--- a/FICS/utils.h
+++ b/FICS/utils.h
@@ -104,7 +104,7 @@ extern int safechar(int);
extern int safestring(char *);
extern int search_directory(char *, char *, char **, int);
extern int truncate_file(char *, int);
-extern int untenths(unsigned int);
+extern time_t untenths(unsigned int);
extern unsigned int tenth_secs(void);
//extern void pprintf_dohightlight(int);
//extern void sprintf_dohightlight(int, char *);