X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fprint_help.c;h=039ab31fbea1e0045be5d8f144a5cc9901face28;hp=a46a88b426b6cbaaed31486e4247e92a94e2ebf6;hb=714b5c530ece27ea2835a313013f5b770163403c;hpb=ced6090a330d3d83d0bce709f756aa3d7d65fea4 diff --git a/sbr/print_help.c b/sbr/print_help.c index a46a88b..039ab31 100644 --- a/sbr/print_help.c +++ b/sbr/print_help.c @@ -11,20 +11,20 @@ void -print_help (char *str, struct swit *swp, int print_context) +print_help(char *str, struct swit *swp, int print_context) { char *s; /* print Usage string */ - printf ("Usage: %s\n", str); + printf("Usage: %s\n", str); /* print all the switches */ - printf (" switches are:\n"); - print_sw (ALL, swp, "-", stdout); + printf(" switches are:\n"); + print_sw(ALL, swp, "-", stdout); /* ** check if we should print any profile entries */ - if (print_context && (s = context_find (invo_name))) - printf ("\nProfile: %s\n", s); + if (print_context && (s = context_find(invo_name))) + printf("\nProfile: %s\n", s); }