diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-03-22 01:26:36 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-03-22 01:26:36 +0200 |
commit | 7521bbdc83acab834594a22bec50c8e1bd836298 (patch) | |
tree | 50a3c3a6e2a8cf4baae0900b0d8521c9eb5162ac | |
parent | Demystified the "state" variable in LZMA code. Use the (diff) | |
download | xz-7521bbdc83acab834594a22bec50c8e1bd836298.tar.xz |
Update a comment to use the variable name rep_len_decoder.
(And BTW, the previous commit actually did change the
program logic slightly.)
-rw-r--r-- | src/liblzma/lzma/lzma_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/lzma/lzma_decoder.c b/src/liblzma/lzma/lzma_decoder.c index d42241da..dfe83589 100644 --- a/src/liblzma/lzma/lzma_decoder.c +++ b/src/liblzma/lzma/lzma_decoder.c @@ -135,7 +135,7 @@ struct lzma_coder_s { probability is_rep2[STATES]; /// If 1, the repeated match has length of one byte. Otherwise - /// the length is decoded from rep_match_len_decoder. + /// the length is decoded from rep_len_decoder. probability is_rep0_long[STATES][POS_STATES_MAX]; probability pos_slot_decoder[LEN_TO_POS_STATES][1 << POS_SLOT_BITS]; |