X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fpackf.c;h=a607da81453c125954d48780cf4cf5d425b498ef;hb=7736b0a60c15cc20db0ba8c3e0fe8e11d1c78c20;hp=ec2f975a62eb20531dc45831e12cd086197dcc71;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b;p=mmh diff --git a/uip/packf.c b/uip/packf.c index ec2f975..a607da8 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 */ }