Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nemequ/liblzf.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Lehmann <schmorpforge@schmorp.de>2007-02-17 01:13:43 +0300
committerMarc Lehmann <schmorpforge@schmorp.de>2007-02-17 01:13:43 +0300
commit709765dafaa03a64f332340d061b53c715ceaedd (patch)
treef6733d9ba26a9540ab182e763e404829fb586bb0
parenta84ab17b0942b42d99577edd6ad47a32e550a6fc (diff)
*** empty log message ***
-rw-r--r--Changes3
-rw-r--r--Makefile.in2
-rw-r--r--lzf_c.c2
3 files changed, 4 insertions, 3 deletions
diff --git a/Changes b/Changes
index de0d2eb..cbded04 100644
--- a/Changes
+++ b/Changes
@@ -1,8 +1,9 @@
-2.0
+2.0 Fri Feb 16 23:11:18 CET 2007
- replaced lzf demo by industrial-strength lzf utility with behaviour
similar other compression utilities. Thanks for Stefan Traby for
rewriting it!
+ - fix state arg prototype.
1.7 Wed Sep 27 17:29:15 CEST 2006
- remove bogus "unlzf" patch.
diff --git a/Makefile.in b/Makefile.in
index 050b56d..9a254b6 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
-VERSION = 1.6
+VERSION = 2.0
prefix = @prefix@
exec_prefix = @exec_prefix@
diff --git a/lzf_c.c b/lzf_c.c
index b9b9ef9..e22ed08 100644
--- a/lzf_c.c
+++ b/lzf_c.c
@@ -84,7 +84,7 @@ unsigned int
lzf_compress (const void *const in_data, unsigned int in_len,
void *out_data, unsigned int out_len
#if LZF_STATE_ARG
- , LZF_STATE *htab
+ , LZF_STATE htab
#endif
)
{