X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/8f8d299c72fdf8105947681d459dde45eda94e9d..3c9700d8d045f3ff26ce5dd2a174454dafc14822:/uip/mhshow.c diff --git a/uip/mhshow.c b/uip/mhshow.c index ff2bee85..0791c483 100644 --- a/uip/mhshow.c +++ b/uip/mhshow.c @@ -475,8 +475,7 @@ do_cache: context_save (); /* save the context file */ } - done (0); - /* NOTREACHED */ + return done (0); } @@ -495,7 +494,7 @@ pipeser (int i) } -void +int done (int status) { CT *ctp; @@ -505,4 +504,5 @@ done (int status) free_content (*ctp); exit (status); + return 1; /* dead code to satisfy the compiler */ }