summaryrefslogtreecommitdiffstats
path: root/lzip.h
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 13:45:30 +0000
committerDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 13:45:30 +0000
commitb8470619016a1f87a6d2db4ce1857608dbd2fb21 (patch)
tree5dff6f0557f7da575ab9c0ace0c8bc8b0e80fc81 /lzip.h
parentAdding debian version 1.1-4. (diff)
downloadlzlib-b8470619016a1f87a6d2db4ce1857608dbd2fb21.tar.xz
lzlib-b8470619016a1f87a6d2db4ce1857608dbd2fb21.zip
Merging upstream version 1.2.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'lzip.h')
-rw-r--r--lzip.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lzip.h b/lzip.h
index 0d77aa7..bc56353 100644
--- a/lzip.h
+++ b/lzip.h
@@ -40,28 +40,28 @@ public:
void set_char() throw()
{
static const unsigned char next[states] =
- {0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 4, 5};
+ { 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 4, 5 };
st = next[st];
}
void set_match() throw()
{
static const unsigned char next[states] =
- {7, 7, 7, 7, 7, 7, 7, 10, 10, 10, 10, 10};
+ { 7, 7, 7, 7, 7, 7, 7, 10, 10, 10, 10, 10 };
st = next[st];
}
void set_rep() throw()
{
static const unsigned char next[states] =
- {8, 8, 8, 8, 8, 8, 8, 11, 11, 11, 11, 11};
+ { 8, 8, 8, 8, 8, 8, 8, 11, 11, 11, 11, 11 };
st = next[st];
}
void set_short_rep() throw()
{
static const unsigned char next[states] =
- {9, 9, 9, 9, 9, 9, 9, 11, 11, 11, 11, 11};
+ { 9, 9, 9, 9, 9, 9, 9, 11, 11, 11, 11, 11 };
st = next[st];
}
};