summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--programs/datagen.c2
-rw-r--r--programs/datagen.h2
-rw-r--r--programs/datagencli.c8
3 files changed, 6 insertions, 6 deletions
diff --git a/programs/datagen.c b/programs/datagen.c
index 9df9da8..5e4cdd2 100644
--- a/programs/datagen.c
+++ b/programs/datagen.c
@@ -19,7 +19,7 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
You can contact the author at :
- - ZSTD source repository : https://github.com/Cyan4973/zstd
+ - LZ4 source repository : https://github.com/Cyan4973/lz4
- Public forum : https://groups.google.com/forum/#!forum/lz4c
*/
diff --git a/programs/datagen.h b/programs/datagen.h
index 631d146..2bf3d7f 100644
--- a/programs/datagen.h
+++ b/programs/datagen.h
@@ -19,7 +19,7 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
You can contact the author at :
- - ZSTD source repository : https://github.com/Cyan4973/zstd
+ - LZ4 source repository : https://github.com/Cyan4973/lz4
- Public forum : https://groups.google.com/forum/#!forum/lz4c
*/
diff --git a/programs/datagencli.c b/programs/datagencli.c
index 601cb0a..7b2b140 100644
--- a/programs/datagencli.c
+++ b/programs/datagencli.c
@@ -20,7 +20,7 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
You can contact the author at :
- - ZSTD source repository : https://github.com/Cyan4973/zstd
+ - LZ4 source repository : https://github.com/Cyan4973/lz4
- Public forum : https://groups.google.com/forum/#!forum/lz4c
*/
@@ -53,8 +53,8 @@
/**************************************
* Constants
**************************************/
-#ifndef ZSTD_VERSION
-# define ZSTD_VERSION "r1"
+#ifndef LZ4_VERSION
+# define LZ4_VERSION "r1"
#endif
#define KB *(1 <<10)
@@ -182,7 +182,7 @@ int main(int argc, char** argv)
}
}
- DISPLAYLEVEL(4, "Data Generator %s \n", ZSTD_VERSION);
+ DISPLAYLEVEL(4, "Data Generator %s \n", LZ4_VERSION);
DISPLAYLEVEL(3, "Seed = %u \n", seed);
if (proba!=COMPRESSIBILITY_DEFAULT) DISPLAYLEVEL(3, "Compressibility : %i%%\n", (U32)(proba*100));