From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sat, 29 Jul 2023 10:54:18 +0000 (+0200) Subject: Fix typo found by codespell X-Git-Tag: 2.1.4~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0937b8a58be4dae44b6f2dcad6430838a41b74f;p=thirdparty%2Fzlib-ng.git Fix typo found by codespell --- diff --git a/arch/riscv/adler32_rvv.c b/arch/riscv/adler32_rvv.c index 0e78c9287..c9da34f3f 100644 --- a/arch/riscv/adler32_rvv.c +++ b/arch/riscv/adler32_rvv.c @@ -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) {