X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=helper%2Fmain.c;h=f194008f324ed582e5d97682d6d777f6c66cfd7a;hb=f6e12eccb65bef3eb57631e54199d8b1610e7c5c;hp=4afcb242e2e3211e78c143ce0b6faceb41add3bf;hpb=0f89ba0654de234429042ffcc91c8a0de94ec98b;p=febootstrap.git diff --git a/helper/main.c b/helper/main.c index 4afcb24..f194008 100644 --- a/helper/main.c +++ b/helper/main.c @@ -51,9 +51,10 @@ static const struct option long_options[] = { }; static void -usage (const char *progname) +usage (FILE *f, const char *progname) { - printf ("%s: build the supermin appliance on the fly\n" + fprintf (f, + "%s: build the supermin appliance on the fly\n" "\n" "Usage:\n" " %s [-options] inputs [...] host_cpu kernel initrd\n" @@ -99,7 +100,7 @@ main (int argc, char *argv[]) switch (c) { case HELP_OPTION: - usage (argv[0]); + usage (stdout, argv[0]); exit (EXIT_SUCCESS); case 'f': @@ -119,7 +120,7 @@ main (int argc, char *argv[]) exit (EXIT_SUCCESS); default: - usage (argv[0]); + usage (stderr, argv[0]); exit (EXIT_FAILURE); } }