selftests/powerpc: Fix spelling mistake "mmaping" -> "mmapping"
authorColin Ian King <colin.i.king@gmail.com>
Fri, 21 Oct 2022 08:45:45 +0000 (09:45 +0100)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 24 Nov 2022 12:31:49 +0000 (23:31 +1100)
There is a spelling mistake in a perror message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20221021084545.65973-1-colin.i.king@gmail.com
tools/testing/selftests/powerpc/ptrace/core-pkey.c

index bbc05ffc5860a52adab9b9a033e3f04cafc22aac..1a70a96f0bfe7251d6b4e3a568985401a09b0770 100644 (file)
@@ -329,7 +329,7 @@ static int parent(struct shared_info *info, pid_t pid)
 
        core = mmap(NULL, core_size, PROT_READ, MAP_PRIVATE, fd, 0);
        if (core == (void *) -1) {
-               perror("Error mmaping core file");
+               perror("Error mmapping core file");
                ret = TEST_FAIL;
                goto out;
        }