summaryrefslogtreecommitdiffstats
path: root/programs
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2016-12-04 19:05:36 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2016-12-04 19:05:36 (GMT)
commit5eb547a6080b8e63b5e522b448e31052fbc6b927 (patch)
tree6c8ecde04424aa9220ca7c8e2aa1218a8239bafc /programs
parent9a6f7dfc5b1e9ce882944c45de895cf9c21d1b7c (diff)
downloadlz4-5eb547a6080b8e63b5e522b448e31052fbc6b927.zip
lz4-5eb547a6080b8e63b5e522b448e31052fbc6b927.tar.gz
lz4-5eb547a6080b8e63b5e522b448e31052fbc6b927.tar.bz2
fix #283 : implement LZ4_versionString().
Diffstat (limited to 'programs')
-rw-r--r--programs/lz4cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/lz4cli.c b/programs/lz4cli.c
index a452d1c..46c2f1b 100644
--- a/programs/lz4cli.c
+++ b/programs/lz4cli.c
@@ -78,7 +78,7 @@
******************************/
#define COMPRESSOR_NAME "LZ4 command line interface"
#define AUTHOR "Yann Collet"
-#define WELCOME_MESSAGE "*** %s %i-bits v%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_versionString(), AUTHOR
#define LZ4_EXTENSION ".lz4"
#define LZ4CAT "lz4cat"
#define UNLZ4 "unlz4"