From: Ralph Corderoy Date: Mon, 24 Oct 2016 22:21:57 +0000 (+0100) Subject: Replace puts() with putchar(). X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/b32b6efa41717ceab51ae52fbc600761463fae1b?hp=af131312b9f608eb0af42bd5c47152b78442a7b0 Replace puts() with putchar(). --- diff --git a/sbr/print_help.c b/sbr/print_help.c index 813a1cb2..5374b6b9 100644 --- a/sbr/print_help.c +++ b/sbr/print_help.c @@ -31,7 +31,7 @@ print_help (char *str, struct swit *swp, int print_context) } /* and for further info */ - puts (""); + putchar('\n'); print_intro (stdout, TRUE); puts ("\nSee the BUGS section of the nmh(7) man page for more information."); }