Changed some string terminations from NULL to \0.
[mmh] / uip / pick.c
index d2f72ef..6cae130 100644 (file)
@@ -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 */
 }