X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/1691e80890e5d8ba258c51c214a3e91880e1db2b..1e6e0b5cc1bd2d49ffcef4ea7bb1bb6c256d07b7:/uip/mhn.c diff --git a/uip/mhn.c b/uip/mhn.c index 70f730b5..f73853e4 100644 --- a/uip/mhn.c +++ b/uip/mhn.c @@ -708,8 +708,7 @@ do_cache: context_save (); /* save the context file */ } - done (0); - /* NOTREACHED */ + return done (0); } @@ -728,7 +727,7 @@ pipeser (int i) } -void +int done (int status) { CT *ctp; @@ -738,4 +737,5 @@ done (int status) free_content (*ctp); exit (status); + return 1; /* dead code to satisfy the compiler */ }