X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fpick.c;h=6cae130b788aac2e55961d09b65bca2ae23bdee8;hb=b28e871ba874a53257b37eed94adfc365ed6ebf2;hp=d2f72efb768874137525e17cbd170bfabeb71bb9;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b;p=mmh diff --git a/uip/pick.c b/uip/pick.c index d2f72ef..6cae130 100644 --- a/uip/pick.c +++ b/uip/pick.c @@ -64,7 +64,7 @@ static struct swit switches[] = { #define VERSIONSW 22 { "version", 0 }, #define HELPSW 23 - { "help", 4 }, + { "help", 0 }, { NULL, 0 } }; @@ -303,14 +303,15 @@ main (int argc, char **argv) seq_save (mp); /* synchronize message sequences */ context_save (); /* save the context file */ folder_free (mp); /* free folder/message structure */ - done (0); + return done (0); } -void +int done (int status) { if (listsw && status && !isatty (fileno (stdout))) printf ("0\n"); exit (status); + return 1; /* dead code to satisfy the compiler */ }