diff options
Diffstat (limited to 'src')
-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" |