On Wed, Aug 13, 2025 at 09:13:33AM +0100, Colin Ian King wrote:
There are spelling mistakes in perror message. Fix these.
Signed-off-by: Colin Ian King colin.i.king@gmail.com
Thanks for this! LGTM, so:
Reviewed-by: Lorenzo Stoakes lorenzo.stoakes@oracle.com
V2: fix typo fixes, I need more coffee
:)
tools/testing/selftests/mm/mremap_test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tools/testing/selftests/mm/mremap_test.c b/tools/testing/selftests/mm/mremap_test.c index 5bd52a951cbd..e289bb1112db 100644 --- a/tools/testing/selftests/mm/mremap_test.c +++ b/tools/testing/selftests/mm/mremap_test.c @@ -846,7 +846,7 @@ static void mremap_move_multi_invalid_vmas(FILE *maps_fp, } if (err != EFAULT) { errno = err;
perror("mrmeap() unexpected error");
success = false; goto out_unmap; }perror("mremap() unexpected error");
@@ -899,7 +899,7 @@ static void mremap_move_multi_invalid_vmas(FILE *maps_fp, } if (err != EFAULT) { errno = err;
perror("mrmeap() unexpected error");
success = false; goto out_unmap; }perror("mremap() unexpected error");
@@ -948,7 +948,7 @@ static void mremap_move_multi_invalid_vmas(FILE *maps_fp, } if (err != EFAULT) { errno = err;
perror("mrmeap() unexpected error");
success = false; goto out_unmap; }perror("mremap() unexpected error");
-- 2.50.1