Avoid hardcoded constant in easy.c.

This commit is contained in:
Lasse Collin 2009-01-26 14:33:13 +02:00
parent 1859d22d75
commit c129748675
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ struct lzma_coder_s {
/// We need to keep the filters array available in case
/// LZMA_FULL_FLUSH is used.
lzma_filter filters[5];
lzma_filter filters[LZMA_FILTERS_MAX + 1];
};