summaryrefslogtreecommitdiffstats
path: root/programs/lz4cli.c
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2016-09-03 02:48:24 (GMT)
committerYann Collet <cyan@fb.com>2016-09-03 02:48:24 (GMT)
commit32a31663c3352884c9569438646a4fdd4141e975 (patch)
tree75e2f3485e0538dfba2e3572fccb60c5b702c74e /programs/lz4cli.c
parent64f556e610b68e6781e05d2d6470ebf8b8dff45c (diff)
downloadlz4-32a31663c3352884c9569438646a4fdd4141e975.zip
lz4-32a31663c3352884c9569438646a4fdd4141e975.tar.gz
lz4-32a31663c3352884c9569438646a4fdd4141e975.tar.bz2
fuzzer depends on standard C time.h only
Diffstat (limited to 'programs/lz4cli.c')
-rw-r--r--programs/lz4cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/lz4cli.c b/programs/lz4cli.c
index 3e09073..8b391f9 100644
--- a/programs/lz4cli.c
+++ b/programs/lz4cli.c
@@ -90,7 +90,7 @@
******************************/
#define COMPRESSOR_NAME "LZ4 command line interface"
#define AUTHOR "Yann Collet"
-#define WELCOME_MESSAGE "*** %s %i-bits %s, by %s ***\n", COMPRESSOR_NAME, (int)(sizeof(void*)*8), LZ4_VERSION_STRING, AUTHOR
+#define WELCOME_MESSAGE "*** %s %i-bits v%s, by %s ***\n", COMPRESSOR_NAME, (int)(sizeof(void*)*8), LZ4_VERSION_STRING, AUTHOR
#define LZ4_EXTENSION ".lz4"
#define LZ4CAT "lz4cat"
#define UNLZ4 "unlz4"