]> wimlib.net Git - wimlib/blobdiff - include/wimlib/decompress_common.h
compiler.h: remove concept of different unaligned access speeds
[wimlib] / include / wimlib / decompress_common.h
index 4bfaf251151643fd2d812d1619ca2482aeea9047..54241b36592495106ff7d2efc5970e3d84b52c20 100644 (file)
@@ -299,7 +299,7 @@ lz_copy(u8 *dst, u32 length, u32 offset, const u8 *winend, u32 min_length)
         * beyond the end of the output buffer, hence the check for (winend -
         * end >= WORDSIZE - 1).
         */
-       if (UNALIGNED_ACCESS_IS_VERY_FAST &&
+       if (UNALIGNED_ACCESS_IS_FAST &&
            likely(winend - end >= WORDSIZE - 1))
        {