liblzma: Fix a typo in a comment

Thanks to Sam James for spotting it.

Fixes: f644473a21
This commit is contained in:
Lasse Collin 2024-06-11 21:59:09 +03:00
parent afd9b4d282
commit 0a32d2072c
1 changed files with 1 additions and 1 deletions

View File

@ -420,7 +420,7 @@ is_arch_extension_supported(void)
// - ICC's _may_i_use_cpu_feature: the other methods should work too.
// - GCC >= 6 / Clang / ICX __builtin_cpu_supports("pclmul")
//
// CPUID decding is needed with MSVC anyway and older GCC. This keeps
// CPUID decoding is needed with MSVC anyway and older GCC. This keeps
// the feature checks in the build system simpler too. The nice thing
// about __builtin_cpu_supports would be that it generates very short
// code as is it only reads a variable set at startup but a few bytes