summaryrefslogtreecommitdiff
path: root/src/lzw.h
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2017-04-04 13:53:51 +0100
committerMichael Drake <michael.drake@codethink.co.uk>2017-04-05 11:06:23 +0100
commitf9797e4ae82090808036b1e1ec4318d0f1bdc456 (patch)
tree5a8d0c86954d5bc46deff890cf7551ab1f4a5989 /src/lzw.h
parent34f3a9a81824dcda5a3e1944d14b0273298ec0c3 (diff)
downloadlibnsgif-f9797e4ae82090808036b1e1ec4318d0f1bdc456.tar.gz
libnsgif-f9797e4ae82090808036b1e1ec4318d0f1bdc456.tar.bz2
New LZW decoder: Real-world fix; continue after dictionary is full.
Diffstat (limited to 'src/lzw.h')
-rw-r--r--src/lzw.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lzw.h b/src/lzw.h
index 5812c0d..385b425 100644
--- a/src/lzw.h
+++ b/src/lzw.h
@@ -34,7 +34,6 @@ typedef enum lzw_result {
LZW_EOI_CODE, /**< Error: End of Information code */
LZW_BAD_ICODE, /**< Error: Bad initial LZW code */
LZW_BAD_CODE, /**< Error: Bad LZW code */
- LZW_BAD_DATA, /**< Error: Bad data */
} lzw_result;