diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-01-22 12:53:33 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-01-22 12:53:33 +0200 |
commit | 0b3318661ce749550b8531dfd469639a08930391 (patch) | |
tree | dcbbcf8b7aa96bc2a73ba32c4d1ae4509ce2f497 /src/liblzma/common | |
parent | Add some single-call buffer-to-buffer coding functions. (diff) | |
download | xz-0b3318661ce749550b8531dfd469639a08930391.tar.xz |
Fix a comment.
Diffstat (limited to 'src/liblzma/common')
-rw-r--r-- | src/liblzma/common/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/common/common.h b/src/liblzma/common/common.h index 44117c9a..392491e4 100644 --- a/src/liblzma/common/common.h +++ b/src/liblzma/common/common.h @@ -140,7 +140,7 @@ struct lzma_next_coder_s { lzma_check (*get_check)(const lzma_coder *coder); /// Pointer to function to get and/or change the memory usage limit. - /// If memlimit == 0, the limit is not changed. + /// If new_memlimit == 0, the limit is not changed. lzma_ret (*memconfig)(lzma_coder *coder, uint64_t *memusage, uint64_t *old_memlimit, uint64_t new_memlimit); }; |