X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmhbuild.c;h=2776f7c8d15011915f1caffafb8a9a4b76332922;hb=27844443b4759689ecbc2eb4519c0fe83ebda473;hp=15132eece4121407e176c0d4cbd4dbdf80050034;hpb=56a805299de35d8924969138aef4d0f1580daa6d;p=mmh diff --git a/uip/mhbuild.c b/uip/mhbuild.c index 15132ee..2776f7c 100644 --- a/uip/mhbuild.c +++ b/uip/mhbuild.c @@ -100,7 +100,7 @@ static int unlink_infile = 0; static char outfile[BUFSIZ]; static int unlink_outfile = 0; -static int unlink_done (int); +static void unlink_done (int); /* mhbuildsbr.c */ CT build_mime (char *); @@ -381,11 +381,12 @@ main (int argc, char **argv) unlink_outfile = 0; free_content (ct); - return done (0); + done (0); + return 1; } -static int +static void unlink_done (int status) { /* @@ -398,5 +399,4 @@ unlink_done (int status) unlink (outfile); exit (status); - return 1; /* dead code to satisfy the compiler */ }