From: Stephen Seo Date: Mon, 17 Feb 2025 02:46:44 +0000 (+0900) Subject: Add newline before printed usage text X-Git-Tag: 1.15^2~2 X-Git-Url: https://git.seodisparate.com/stephenseo/static/gitweb.js?a=commitdiff_plain;h=339fb852cecdd5a4e5578e538330bfabd6b37127;p=SimpleArchiver Add newline before printed usage text --- diff --git a/src/parser.c b/src/parser.c index 64f8469..c4b3695 100644 --- a/src/parser.c +++ b/src/parser.c @@ -147,7 +147,7 @@ char *simple_archiver_parsed_status_to_str(SDArchiverParsedStatus status) { } void simple_archiver_print_usage(void) { - fprintf(stderr, "Usage flags:\n"); + fprintf(stderr, "\nUsage flags:\n"); fprintf(stderr, "-c : create archive file\n"); fprintf(stderr, "-x : extract archive file\n"); fprintf(stderr, "-t : examine archive file\n");