Author: kib
Date: Tue Dec 16 09:49:07 2014
New Revision: 275821
URL: https://svnweb.freebsd.org/changeset/base/275821

Log:
  Add missed break.
  
  CID:  1258587
  Sponsored by: The FreeBSD Foundation
  MFC after:    20 days

Modified:
  head/sys/kern/kern_procctl.c

Modified: head/sys/kern/kern_procctl.c
==============================================================================
--- head/sys/kern/kern_procctl.c        Tue Dec 16 09:48:23 2014        
(r275820)
+++ head/sys/kern/kern_procctl.c        Tue Dec 16 09:49:07 2014        
(r275821)
@@ -336,6 +336,7 @@ sys_procctl(struct thread *td, struct pr
        case PROC_REAP_STATUS:
                if (error == 0)
                        error = copyout(&x.rs, uap->data, sizeof(x.rs));
+               break;
        case PROC_REAP_KILL:
                error1 = copyout(&x.rk, uap->data, sizeof(x.rk));
                if (error == 0)
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to