diff options
author | Antoine Cœur <antoine.coeur@ef.com> | 2019-05-08 13:30:57 +0800 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2019-07-13 17:53:33 +0300 |
commit | 0d318402f8a022f707622c72f8f1894ea476cf89 (patch) | |
tree | b504495dd51744f5ddf3b5eccbb06e63537cf4ae /src/liblzma/common | |
parent | README: Update translation instructions. (diff) | |
download | xz-0d318402f8a022f707622c72f8f1894ea476cf89.tar.xz |
spelling
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/common/hardware_physmem.c | 2 | ||||
-rw-r--r-- | src/liblzma/common/index.c | 4 | ||||
-rw-r--r-- | src/liblzma/common/stream_encoder_mt.c | 2 | ||||
-rw-r--r-- | src/liblzma/common/vli_decoder.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/liblzma/common/hardware_physmem.c b/src/liblzma/common/hardware_physmem.c index 7405b658..a2bbbe29 100644 --- a/src/liblzma/common/hardware_physmem.c +++ b/src/liblzma/common/hardware_physmem.c @@ -19,7 +19,7 @@ extern LZMA_API(uint64_t) lzma_physmem(void) { // It is simpler to make lzma_physmem() a wrapper for - // tuklib_physmem() than to hack appropriate symbol visiblity + // tuklib_physmem() than to hack appropriate symbol visibility // support for the tuklib modules. return tuklib_physmem(); } diff --git a/src/liblzma/common/index.c b/src/liblzma/common/index.c index 007e1570..a41e8f33 100644 --- a/src/liblzma/common/index.c +++ b/src/liblzma/common/index.c @@ -105,7 +105,7 @@ typedef struct { typedef struct { - /// Every index_stream is a node in the tree of Sreams. + /// Every index_stream is a node in the tree of Streams. index_tree_node node; /// Number of this Stream (first one is 1) @@ -166,7 +166,7 @@ struct lzma_index_s { lzma_vli index_list_size; /// How many Records to allocate at once in lzma_index_append(). - /// This defaults to INDEX_GROUP_SIZE but can be overriden with + /// This defaults to INDEX_GROUP_SIZE but can be overridden with /// lzma_index_prealloc(). size_t prealloc; diff --git a/src/liblzma/common/stream_encoder_mt.c b/src/liblzma/common/stream_encoder_mt.c index 2efe44c2..448d871c 100644 --- a/src/liblzma/common/stream_encoder_mt.c +++ b/src/liblzma/common/stream_encoder_mt.c @@ -958,7 +958,7 @@ stream_encoder_mt_init(lzma_next_coder *next, const lzma_allocator *allocator, // Validate the filter chain so that we can give an error in this // function instead of delaying it to the first call to lzma_code(). // The memory usage calculation verifies the filter chain as - // a side effect so we take advatange of that. + // a side effect so we take advantage of that. if (lzma_raw_encoder_memusage(filters) == UINT64_MAX) return LZMA_OPTIONS_ERROR; diff --git a/src/liblzma/common/vli_decoder.c b/src/liblzma/common/vli_decoder.c index c181828b..af2799d1 100644 --- a/src/liblzma/common/vli_decoder.c +++ b/src/liblzma/common/vli_decoder.c @@ -72,7 +72,7 @@ lzma_vli_decode(lzma_vli *restrict vli, size_t *vli_pos, // corrupt. // // If we need bigger integers in future, old versions liblzma - // will confusingly indicate the file being corrupt istead of + // will confusingly indicate the file being corrupt instead of // unsupported. I suppose it's still better this way, because // in the foreseeable future (writing this in 2008) the only // reason why files would appear having over 63-bit integers |