Commit 2519c35f authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by Shuah Khan
Browse files

tools/testing: Fix trailing semicolon



The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.

Signed-off-by: default avatarLuis de Bethencourt <luisbg@kernel.org>
Signed-off-by: default avatarShuah Khan <shuahkh@osg.samsung.com>
parent 4c1baad2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ int main(int argc, char *argv[])
			return pr_err("NS_GET_PARENT returned a wrong namespace");

		if (ioctl(pns, NS_GET_PARENT) >= 0 || errno != EPERM)
			return pr_err("Don't get EPERM");;
			return pr_err("Don't get EPERM");
	}

	kill(pid, SIGKILL);