diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 13:45:24 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 13:45:24 +0000 |
commit | 53d61f05fc82d86829666485c0012780c1c93da2 (patch) | |
tree | ec05873b6fec3fd5f57543449a1a459ccd5190f0 /lzip.h | |
parent | Adding upstream version 1.1. (diff) | |
download | lzlib-53d61f05fc82d86829666485c0012780c1c93da2.tar.xz lzlib-53d61f05fc82d86829666485c0012780c1c93da2.zip |
Adding upstream version 1.2.upstream/1.2
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-rw-r--r-- | lzip.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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]; } }; |