diff options
-rw-r--r-- | FICS/command.c | 2 | ||||
-rw-r--r-- | FICS/comproc.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/FICS/command.c b/FICS/command.c index 7cfc9c1..528bdf9 100644 --- a/FICS/command.c +++ b/FICS/command.c @@ -710,7 +710,7 @@ boot_out(int p, int p1) } PUBLIC void -rscan_news(FILE *fp, int p, int lc) +rscan_news(FILE *fp, int p, time_t lc) { char *junkp = NULL; char count[10] = { '\0' }; diff --git a/FICS/comproc.h b/FICS/comproc.h index bee30b9..30ef3ff 100644 --- a/FICS/comproc.h +++ b/FICS/comproc.h @@ -79,7 +79,7 @@ extern int com_uptime(int, param_list); extern int com_uscf(int, param_list); extern int com_who(int, param_list); -extern void rscan_news(FILE *, int, int); +extern void rscan_news(FILE *, int, time_t); extern void rscan_news2(FILE *, int, int); #endif /* _COMPROC_H */ |