svn commit: r367286 - head/sys/compat/linux

Conrad Meyer cem at FreeBSD.org
Tue Nov 3 01:10:28 UTC 2020


Author: cem
Date: Tue Nov  3 01:10:27 2020
New Revision: 367286
URL: https://svnweb.freebsd.org/changeset/base/367286

Log:
  linux(4): style: Eliminate dead 'break' after 'return'
  
  No functional change.

Modified:
  head/sys/compat/linux/linux_misc.c

Modified: head/sys/compat/linux/linux_misc.c
==============================================================================
--- head/sys/compat/linux/linux_misc.c	Mon Nov  2 21:47:34 2020	(r367285)
+++ head/sys/compat/linux/linux_misc.c	Tue Nov  3 01:10:27 2020	(r367286)
@@ -1955,7 +1955,6 @@ linux_prctl(struct thread *td, struct linux_prctl_args
 		return (copyout(&pdeath_signal,
 		    (void *)(register_t)args->arg2,
 		    sizeof(pdeath_signal)));
-		break;
 	case LINUX_PR_SET_DUMPABLE:
 		linux_msg(td, "unsupported prctl PR_SET_DUMPABLE");
 		error = EINVAL;


More information about the svn-src-head mailing list