ktest.pl: Fix spelling mistake "Cant" -> "Can't"
authorColin Ian King <colin.king@canonical.com>
Mon, 10 Aug 2020 10:07:50 +0000 (11:07 +0100)
committerSteven Rostedt (VMware) <rostedt@goodmis.org>
Mon, 10 Aug 2020 18:23:13 +0000 (14:23 -0400)
There is a spelling mistake in an error message. Fix it.

Link: https://lkml.kernel.org/r/20200810100750.61475-1-colin.king@canonical.com
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
tools/testing/ktest/ktest.pl

index 9363a5b273398d1fe03230c98f5ed60d09a02f9f..cb16d2aac51c38c1000e189beffac98c0bf64338 100755 (executable)
@@ -1543,7 +1543,7 @@ sub create_pty {
     my $TIOCGPTN = 0x80045430;
 
     sysopen($ptm, "/dev/ptmx", O_RDWR | O_NONBLOCK) or
-       dodie "Cant open /dev/ptmx";
+       dodie "Can't open /dev/ptmx";
 
     # unlockpt()
     $tmp = pack("i", 0);