crypto:fix typo for blake2s

Signed-off-by: anjiahao <anjiahao@xiaomi.com>
This commit is contained in:
anjiahao 2023-07-21 09:57:33 +08:00 committed by Xiang Xiao
parent b705103f23
commit 319e8d66f6
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ static void blake2_memcpy(FAR void *dst, FAR const void *src, size_t len)
len--;
}
#else
memcpy(dst, set, len);
memcpy(dst, src, len);
#endif
}