Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: Luis de Bethencourt <luisbg@kernel.org>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>

authored by

Luis de Bethencourt and committed by
Shuah Khan
2519c35f 4c1baad2

+1 -1
+1 -1
tools/testing/selftests/nsfs/pidns.c
··· 70 70 return pr_err("NS_GET_PARENT returned a wrong namespace"); 71 71 72 72 if (ioctl(pns, NS_GET_PARENT) >= 0 || errno != EPERM) 73 - return pr_err("Don't get EPERM");; 73 + return pr_err("Don't get EPERM"); 74 74 } 75 75 76 76 kill(pid, SIGKILL);