summaryrefslogtreecommitdiffstats
path: root/lib/lz4.c
diff options
context:
space:
mode:
authorDominique Pelle <dominique.pelle@tomtom.com>2022-07-31 15:47:00 (GMT)
committerDominique Pelle <dominique.pelle@tomtom.com>2022-07-31 15:47:00 (GMT)
commit33474853075599c69cb95b8312fe4981411fa346 (patch)
tree6e7e26af5985468629bd70439106a61db662acab /lib/lz4.c
parentd343a3685233f3c46c20bfeb7e8674de9d8175fc (diff)
downloadlz4-33474853075599c69cb95b8312fe4981411fa346.zip
lz4-33474853075599c69cb95b8312fe4981411fa346.tar.gz
lz4-33474853075599c69cb95b8312fe4981411fa346.tar.bz2
fix: various typos
Diffstat (limited to 'lib/lz4.c')
-rw-r--r--lib/lz4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4.c b/lib/lz4.c
index 0dd337a..9d85ba1 100644
--- a/lib/lz4.c
+++ b/lib/lz4.c
@@ -538,7 +538,7 @@ static unsigned LZ4_NbCommonBytes (reg_t val)
* including _tzcnt_u64. Therefore, we need to neuter the _tzcnt_u64 code path for ARM64EC.
****************************************************************************************************/
# if defined(__clang__) && (__clang_major__ < 10)
- /* Avoid undefined clang-cl intrinics issue.
+ /* Avoid undefined clang-cl intrinsics issue.
* See https://github.com/lz4/lz4/pull/1017 for details. */
return (unsigned)__builtin_ia32_tzcnt_u64(val) >> 3;
# else