diff options
author | Andreas Fankhauser hiddenalpha.ch | 2023-02-19 17:42:17 +0100 |
---|---|---|
committer | Andreas Fankhauser hiddenalpha.ch | 2023-02-19 17:42:17 +0100 |
commit | 0365d5d1e236e72debee8e6f5e7156cfebed6c8d (patch) | |
tree | d5734a294241216cb56d8fbd51e8b13ea7f4bead /src/main | |
parent | 54d94d6c3318850c340d18f51343e1caf1ef56f4 (diff) | |
download | DeflateAndInflate-0365d5d1e236e72debee8e6f5e7156cfebed6c8d.zip DeflateAndInflate-0365d5d1e236e72debee8e6f5e7156cfebed6c8d.tar.gz |
Reword help pages. Small change only.wip-RewordHelpPages-20230219
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/c/deflate.c | 6 | ||||
-rw-r--r-- | src/main/c/inflate.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/main/c/deflate.c b/src/main/c/deflate.c index 120ed64..e473d5b 100644 --- a/src/main/c/deflate.c +++ b/src/main/c/deflate.c @@ -30,11 +30,11 @@ struct Deflate { static void printHelp( void ){ - printf("\n %s%s", strrchr(__FILE__,'/')+1, " @ " STR_QUOT(PROJECT_VERSION) "\n" + printf("\n %s%s", strrchr(__FILE__,'/')+1, " " STR_QUOT(PROJECT_VERSION) "\n" "\n" - "deflates stdin to stdout\n" + " deflates stdin to stdout\n" "\n" - "Options:\n" + " Options:\n" "\n" " --level\n" " Compression level 0-9 (0 fastest, 9 smallest).\n" diff --git a/src/main/c/inflate.c b/src/main/c/inflate.c index ab4eb0b..e47eda3 100644 --- a/src/main/c/inflate.c +++ b/src/main/c/inflate.c @@ -26,7 +26,7 @@ struct MyInflate { static void printHelp( void ){ - printf("\n %s%s", strrchr(__FILE__,'/')+1, " @ " STR_QUOT(PROJECT_VERSION) "\n" + printf("\n %s%s", strrchr(__FILE__,'/')+1, " " STR_QUOT(PROJECT_VERSION) "\n" "\n" " inflates stdin to stdout\n" "\n" |