X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/1691e80890e5d8ba258c51c214a3e91880e1db2b..42ebc5bceefcb8a65eaa9dab779e44d35682ff1e:/uip/packf.c?ds=sidebyside diff --git a/uip/packf.c b/uip/packf.c index ec2f975a..a607da81 100644 --- a/uip/packf.c +++ b/uip/packf.c @@ -197,12 +197,13 @@ main (int argc, char **argv) seq_save (mp); context_save (); /* save the context file */ folder_free (mp); /* free folder/message structure */ - done (0); + return done (0); } -void +int done (int status) { mbx_close (file, md); exit (status); + return 1; /* dead code to satisfy the compiler */ }