Skip to content

Commit

Permalink
liblzma: Fix typo discovered by codespell.
Browse files Browse the repository at this point in the history
  • Loading branch information
JiaT75 committed Feb 9, 2024
1 parent 55d9fc8 commit adb073d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/liblzma/check/crc32_arm64.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit adb073d

Please sign in to comment.