help.c: use puts() instead of printf{,_ln}() for consistency
commitcd87ce7d0def6b6efeb1ae688bde217a0a47c9eb
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Mon, 21 Feb 2022 19:38:45 +0000 (21 20:38 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 23 Feb 2022 21:41:36 +0000 (23 13:41 -0800)
tree0e38a34888f5b3da7b30fb5f6331cbd0a07081a3
parent4bf5cdab8e1c9ad884748c02669287ea1fae05d9
help.c: use puts() instead of printf{,_ln}() for consistency

Change code in "help.c" that used printf_ln() without format
specifiers to use puts() instead, as other existing code in the file
does. Let's also change related code to use puts() instead of the
equivalent of calling "printf" with a "%s\n" format.

This formatting-only change will make a subsequent functional change
easier to read, as it'll be changing code that's consistently using
the same functions to do the same things.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
help.c