aboutsummaryrefslogtreecommitdiff
path: root/tools/testing/selftests/arm64/fp/kernel-test.c
diff options
context:
space:
mode:
authorNikola Z. Ivanov <zlatistiv@gmail.com>2025-08-27 00:49:13 +0300
committerWill Deacon <will@kernel.org>2025-09-08 16:17:13 +0100
commit14a41628c470f4aa069075cdcf6ec0138b6cf1da (patch)
tree07d4307860caf29fd2702466392d18fb17146c21 /tools/testing/selftests/arm64/fp/kernel-test.c
parent62e8a9fbaad147b65bda9362c2d8a52a86a0bac3 (diff)
selftests/arm64: Fix grammatical error in string literals
Fix grammatical error in <past tense verb> + <infinitive> construct related to memory allocation checks. In essence change "Failed to allocated" to "Failed to allocate". Signed-off-by: Nikola Z. Ivanov <zlatistiv@gmail.com> Reviewed-by: Mark Brown <broonie@kernel.org> Reviewed-by: Bagas Sanjaya <bagasdotme@gmail.com> Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'tools/testing/selftests/arm64/fp/kernel-test.c')
-rw-r--r--tools/testing/selftests/arm64/fp/kernel-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/arm64/fp/kernel-test.c b/tools/testing/selftests/arm64/fp/kernel-test.c
index e3cec3723ffa..0c40007d1282 100644
--- a/tools/testing/selftests/arm64/fp/kernel-test.c
+++ b/tools/testing/selftests/arm64/fp/kernel-test.c
@@ -188,13 +188,13 @@ static bool create_socket(void)
ref = malloc(digest_len);
if (!ref) {
- printf("Failed to allocated %d byte reference\n", digest_len);
+ printf("Failed to allocate %d byte reference\n", digest_len);
return false;
}
digest = malloc(digest_len);
if (!digest) {
- printf("Failed to allocated %d byte digest\n", digest_len);
+ printf("Failed to allocate %d byte digest\n", digest_len);
return false;
}