]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Fix typo found by codespell
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>
Sat, 29 Jul 2023 10:54:18 +0000 (12:54 +0200)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Sun, 6 Aug 2023 08:16:59 +0000 (10:16 +0200)
arch/riscv/adler32_rvv.c

index 0e78c92875c05e43dbad4ce2aeb41505f5014b5f..c9da34f3f89ef12d1b4f8ce4d9cfbc105ab1ce38 100644 (file)
@@ -71,7 +71,7 @@ Z_INTERNAL uint32_t adler32_rvv(uint32_t adler, const uint8_t *buf, size_t len)
             cnt = 0;
         }
     }
-    /* the left len <= 256 now, we can use 16-bit accum safetly */
+    /* the left len <= 256 now, we can use 16-bit accum safely */
     v_buf16_accu = __riscv_vmv_v_x_u16m2(0, vl);
     size_t res = left;
     while (left >= vl) {