Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests: prctl: Fix spelling mistake "anonynous" -> "anonymous"

There is a spelling mistake in an log message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>

authored by

Colin Ian King and committed by
Shuah Khan
17cb2f17 e42bf3cf

+1 -1
+1 -1
tools/testing/selftests/prctl/set-anon-vma-name-test.c
··· 97 97 TH_LOG("Try to pass invalid name (with non-printable character \\1) to rename the VMA"); 98 98 EXPECT_EQ(rename_vma((unsigned long)self->ptr_anon, AREA_SIZE, BAD_NAME), -EINVAL); 99 99 100 - TH_LOG("Try to rename non-anonynous VMA"); 100 + TH_LOG("Try to rename non-anonymous VMA"); 101 101 EXPECT_EQ(rename_vma((unsigned long) self->ptr_not_anon, AREA_SIZE, GOOD_NAME), -EINVAL); 102 102 } 103 103