aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--FICS/utils.c2
-rw-r--r--FICS/utils.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/FICS/utils.c b/FICS/utils.c
index bd1a213..90f84ff 100644
--- a/FICS/utils.c
+++ b/FICS/utils.c
@@ -719,7 +719,7 @@ strgtime(time_t *clock)
* This is used only for relative timing since it reports seconds
* since about 5:00 pm on Feb 16, 1994.
*/
-PUBLIC unsigned
+PUBLIC unsigned int
tenth_secs(void)
{
struct timeval tp;
diff --git a/FICS/utils.h b/FICS/utils.h
index 5125bc4..32ab772 100644
--- a/FICS/utils.h
+++ b/FICS/utils.h
@@ -95,7 +95,7 @@ extern int safestring( );
extern int search_directory(char *, char *, char **, int);
extern int truncate_file();
extern int untenths();
-extern unsigned tenth_secs();
+extern unsigned int tenth_secs(void);
extern void pprintf_dohightlight(int);
extern void sprintf_dohightlight(int,char *);