commit | 5f5f89ac010fd6a4e235a3b25937e7c0f26e7eee | [log] [tgz] |
---|---|---|
author | Dan Carpenter <dan.carpenter@linaro.org> | Thu Jul 27 10:12:58 2023 +0300 |
committer | Tom Rini <trini@konsulko.com> | Tue Aug 08 17:41:52 2023 -0400 |
tree | 032c0ee471ae53f081bd2976d6fd524e2e2ee523 | |
parent | 18b01e0182487c45c2718ec11050483ba3bda29d [diff] |
test: unicode: fix a sizeof() vs ARRAY_SIZE() bug The u16_strlcat() is in units of u16 not bytes. So the limit needs to be ARRAY_SIZE() instead of sizeof(). Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>