X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/1691e80890e5d8ba258c51c214a3e91880e1db2b..e32a18146eb52fc278833d7cfb49ed8d9ace62bc:/uip/mhstore.c diff --git a/uip/mhstore.c b/uip/mhstore.c index a52e00bf..c9b6a26b 100644 --- a/uip/mhstore.c +++ b/uip/mhstore.c @@ -407,8 +407,7 @@ do_cache: context_save (); /* save the context file */ } - done (0); - /* NOTREACHED */ + return done (0); } @@ -427,7 +426,7 @@ pipeser (int i) } -void +int done (int status) { CT *ctp; @@ -437,4 +436,5 @@ done (int status) free_content (*ctp); exit (status); + return 1; /* dead code to satisfy the compiler */ }