Commit 7ce05074 authored by Colin Ian King's avatar Colin Ian King Committed by Shuah Khan

selftests: safesetid: Fix spelling mistake "cant" -> "can't"

There is a spelling mistake in an error message. Fix it.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent a051b2e5
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment