From: Colin Ian King Date: Thu, 26 Aug 2021 12:14:45 +0000 (+0100) Subject: selftests: safesetid: Fix spelling mistake "cant" -> "can't" X-Git-Tag: misc-5.15-2021-09-05~1^2~2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=7ce05074b93c7f130c48e04defa63d157adeb143;p=linux-2.6-block.git selftests: safesetid: Fix spelling mistake "cant" -> "can't" There is a spelling mistake in an error message. Fix it. Signed-off-by: Colin Ian King Signed-off-by: Shuah Khan --- diff --git a/tools/testing/selftests/safesetid/safesetid-test.c b/tools/testing/selftests/safesetid/safesetid-test.c index 0c4d50644c13..4b809c93ba36 100644 --- a/tools/testing/selftests/safesetid/safesetid-test.c +++ b/tools/testing/selftests/safesetid/safesetid-test.c @@ -152,7 +152,7 @@ static void write_policies(void) fd = open(add_whitelist_policy_file, O_WRONLY); if (fd < 0) - die("cant open add_whitelist_policy file\n"); + die("can't open add_whitelist_policy file\n"); written = write(fd, policy_str, strlen(policy_str)); if (written != strlen(policy_str)) { if (written >= 0) {