From 14d4fe34a364d78ca25f39b82713255a3e9006cb Mon Sep 17 00:00:00 2001 From: Dan Harkless Date: Fri, 16 Jul 1999 00:50:01 +0000 Subject: [PATCH] Changed done() from returning void to returning int so that main()s who call done() at the end can instead return done() at the end to eliminate the compilation warning about falling off the end of a non-void function. --- h/prototypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/h/prototypes.h b/h/prototypes.h index 0dccfa2..5fe0b0c 100644 --- a/h/prototypes.h +++ b/h/prototypes.h @@ -48,7 +48,7 @@ void cpydata (int, int, char *, char *); void cpydgst (int, int, char *, char *); int decode_rfc2047 (char *, char *); void discard (FILE *); -void done (int); +int done (int); int fdcompare (int, int); int folder_addmsg (struct msgs **, char *, int, int, int); int folder_delmsgs (struct msgs *, int); -- 1.7.10.4