summaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/boilerplate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/boilerplate.c b/Documentation/boilerplate.c
index c97ad46bc..ddac4e67a 100644
--- a/Documentation/boilerplate.c
+++ b/Documentation/boilerplate.c
@@ -56,8 +56,8 @@ static void __attribute__((__noreturn__)) usage(void)
" consecutive lines are intended by two spaces\n"), out);
fputs(_(" -f, --foobar next option description resets indent\n"), out);
fputs(USAGE_SEPARATOR, out);
- print_usage_help_options(25); /* char offset to align option descriptions */
- fprintf(out, USAGE_MAN_TAIL("fixme-command-name(1)"));
+ printf(USAGE_HELP_OPTIONS(25)); /* char offset to align option descriptions */
+ printf(USAGE_MAN_TAIL("fixme-command-name(1)"));
exit(EXIT_SUCCESS);
}