From: Dan Harkless Date: Fri, 16 Jul 1999 00:50:01 +0000 (+0000) Subject: Changed done() from returning void to returning int so that main()s who call X-Git-Tag: nmh-1_0~169 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=14d4fe34a364d78ca25f39b82713255a3e9006cb 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. --- 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);