diff options
author | des <des@FreeBSD.org> | 2006-03-23 14:02:36 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2006-03-23 14:02:36 +0000 |
commit | caf24dd70915cb95c94e18562674f4dec158dd8c (patch) | |
tree | 37a9206839ae2f1e4ec902b11c4733383a3c4930 /lib/libz/inftrees.h | |
parent | dcdd7970c32e380f850172d84335e45a41b37de8 (diff) | |
download | FreeBSD-src-caf24dd70915cb95c94e18562674f4dec158dd8c.zip FreeBSD-src-caf24dd70915cb95c94e18562674f4dec158dd8c.tar.gz |
Vendor import of ZLib 1.2.3.
Diffstat (limited to 'lib/libz/inftrees.h')
-rw-r--r-- | lib/libz/inftrees.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libz/inftrees.h b/lib/libz/inftrees.h index 82d365a..b1104c8 100644 --- a/lib/libz/inftrees.h +++ b/lib/libz/inftrees.h @@ -1,5 +1,5 @@ /* inftrees.h -- header to use inftrees.c - * Copyright (C) 1995-2003 Mark Adler + * Copyright (C) 1995-2005 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ @@ -36,12 +36,12 @@ typedef struct { */ /* Maximum size of dynamic tree. The maximum found in a long but non- - exhaustive search was 1004 code structures (850 for length/literals - and 154 for distances, the latter actually the result of an + exhaustive search was 1444 code structures (852 for length/literals + and 592 for distances, the latter actually the result of an exhaustive search). The true maximum is not known, but the value below is more than safe. */ -#define ENOUGH 1440 -#define MAXD 154 +#define ENOUGH 2048 +#define MAXD 592 /* Type of code to build for inftable() */ typedef enum { |