From 13d528f11ebbe35544897590a4973e90d9b2f55e Mon Sep 17 00:00:00 2001 From: Dan Harkless Date: Fri, 16 Jul 1999 01:13:05 +0000 Subject: [PATCH] Eliminated compilation warnings. pop_action() and pop_pack() used to return garbage. They now (arbitrarily) return 0. Dunno if their return values are ever used... --- uip/inc.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/uip/inc.c b/uip/inc.c index 9752b5a..164ac98 100644 --- a/uip/inc.c +++ b/uip/inc.c @@ -144,7 +144,7 @@ static int return_gid; char *map_name(char *); #ifdef POP -void done(int); +int done(int); static int pop_action(char *); static int pop_pack(char *); static int map_count(void); @@ -848,7 +848,7 @@ go_to_it: seq_setunseen (mp, 0); /* set the Unseen-Sequence */ seq_save (mp); /* synchronize sequences */ context_save (); /* save the context file */ - done (0); + return done (0); } @@ -886,13 +886,14 @@ cpymsg (FILE *in, FILE *out) #ifdef POP -void +int done (int status) { if (packfile && pd != NOTOK) mbx_close (packfile, pd); exit (status); + return 1; /* dead code to satisfy the compiler */ } static int @@ -900,6 +901,7 @@ pop_action (char *s) { fprintf (pf, "%s\n", s); stop += strlen (s) + 1; + return 0; /* Is return value used? This was missing before 1999-07-15. */ } static int @@ -915,6 +917,7 @@ pop_pack (char *s) continue; fputs (buffer, pf); size += strlen (buffer) + 1; + return 0; /* Is return value used? This was missing before 1999-07-15. */ } static int -- 1.7.10.4