diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-28 00:32:32 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-28 00:32:32 +0100 |
commit | 5caac1d55300e1d40231fa9972ba23e97d53b31e (patch) | |
tree | 7ceea95714c23e623d0f8a98de123b150eb1ccc6 | |
parent | 48d1dc32d9de66f37bc9b679db965f3dca585462 (diff) |
'unsigned' -> 'unsigned int'
-rw-r--r-- | FICS/utils.c | 2 | ||||
-rw-r--r-- | FICS/utils.h | 2 |
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 *); |