There is a spelling mistake in a literal string. Fix it. Signed-off-by: Colin Ian King <colin.i.king@xxxxxxxxx> --- lib/math/tests/int_log_kunit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/math/tests/int_log_kunit.c b/lib/math/tests/int_log_kunit.c index 737d2c00615a..d750a1df37c1 100644 --- a/lib/math/tests/int_log_kunit.c +++ b/lib/math/tests/int_log_kunit.c @@ -24,7 +24,7 @@ static const struct test_case_params intlog2_params[] = { static const struct test_case_params intlog10_params[] = { {0, 0, "Log base 10 of 0"}, - {1, 0, "Log bsae 10 of 1"}, + {1, 0, "Log base 10 of 1"}, {6, 13055203, "Log base 10 of 6"}, {10, 16777225, "Log base 10 of 10"}, {100, 33554450, "Log base 10 of 100"}, -- 2.39.5