X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/8f8d299c72fdf8105947681d459dde45eda94e9d..3c9700d8d045f3ff26ce5dd2a174454dafc14822:/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 */ }