diff options
author | Jia Tan <jiat0218@gmail.com> | 2024-02-09 23:59:54 +0800 |
---|---|---|
committer | Jia Tan <jiat0218@gmail.com> | 2024-02-09 23:59:54 +0800 |
commit | adb073da76a920b5a81e6b32254f4ddb054dc57a (patch) | |
tree | 960ff600fa3395a3aed5acfdab13484285cfdc83 /src/liblzma/check/crc32_arm64.h | |
parent | Translations: Update the Swedish translation. (diff) | |
download | xz-adb073da76a920b5a81e6b32254f4ddb054dc57a.tar.xz |
liblzma: Fix typo discovered by codespell.
Diffstat (limited to 'src/liblzma/check/crc32_arm64.h')
-rw-r--r-- | src/liblzma/check/crc32_arm64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/check/crc32_arm64.h b/src/liblzma/check/crc32_arm64.h index a9722bdb..fc24cd82 100644 --- a/src/liblzma/check/crc32_arm64.h +++ b/src/liblzma/check/crc32_arm64.h @@ -61,7 +61,7 @@ crc32_arch_optimized(const uint8_t *buf, size_t size, uint32_t crc) // Process 8 bytes at a time. The end point is determined by // ignoring the least significant three bits of size to ensure - // we do not process past the bounds of the buffer. This guarentees + // we do not process past the bounds of the buffer. This guarantees // that limit is a multiple of 8 and is strictly less than size. for (const uint8_t *limit = buf + (size & ~((size_t)7)); buf < limit; buf += 8) |