Commit 04757c5e authored by Colin Ian King's avatar Colin Ian King Committed by Michael Ellerman
Browse files

selftests/powerpc: Fix spelling mistake "mmaping" -> "mmapping"



There is a spelling mistake in a perror message. Fix it.

Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20221021084545.65973-1-colin.i.king@gmail.com
parent 266b1991
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}