From c974d7d35cb88c53e162887de4acc8143a3b1139 Mon Sep 17 00:00:00 2001 From: untir_l <87096069+untir-l@users.noreply.github.com> Date: Sun, 27 Feb 2022 23:23:00 +0530 Subject: CLI: fix missing newlines in help --- cli/hitomezashi_cli.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/hitomezashi_cli.c b/cli/hitomezashi_cli.c index 53a9568..4a892c1 100644 --- a/cli/hitomezashi_cli.c +++ b/cli/hitomezashi_cli.c @@ -68,9 +68,9 @@ void hitomezashi_cli_help(void) { "-g - specify the gap between lines as an integer\n" "-t - specify the line thickness as an integer\n" "-f - (optional) specify the foreground colour in RGB as a 32-bit " - "integer, eg. 0x000000" + "integer, eg. 0x000000\n" "-b - (optional) specify the background colour in RGB as a 32-bit " - "integer, eg. 0xFFFFFF" + "integer, eg. 0xFFFFFF\n" "-h - print this help and exit") < 0) { exit(Hitomezashi_Cli_Exit_Code_Err_Print_Help); } -- cgit v1.2.3-57-g22cb