diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2019-06-24 23:52:17 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2019-06-24 23:52:17 +0300 |
commit | d499e467d99efeaae688564eedc4548837c1416a (patch) | |
tree | d3b3749a3999fdf59db75cec0ea1ea69253c44de /src/liblzma/common | |
parent | liblzma: Silence clang -Wmissing-variable-declarations. (diff) | |
download | xz-d499e467d99efeaae688564eedc4548837c1416a.tar.xz |
liblzma: Add a comment.
Diffstat (limited to 'src/liblzma/common')
-rw-r--r-- | src/liblzma/common/stream_encoder_mt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/common/stream_encoder_mt.c b/src/liblzma/common/stream_encoder_mt.c index 448d871c..01e40339 100644 --- a/src/liblzma/common/stream_encoder_mt.c +++ b/src/liblzma/common/stream_encoder_mt.c @@ -700,7 +700,7 @@ stream_encode_mt(void *coder_ptr, const lzma_allocator *allocator, ret = coder->thread_error; if (ret != LZMA_OK) { assert(ret != LZMA_STREAM_END); - break; + break; // Break out of mythread_sync. } // Try to read compressed data to out[]. |