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: v5.15-rc1~97^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7ce05074b93c7f130c48e04defa63d157adeb143;p=thirdparty%2Fkernel%2Flinux.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 0c4d50644c131..4b809c93ba360 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) {