Author: ed
Date: Sat Jul 11 18:39:16 2015
New Revision: 285399
URL: https://svnweb.freebsd.org/changeset/base/285399

Log:
  Add missing function parameter.
  
  A function parameter got added in r285356, meaning that the call to
  kern_dup() needs to be patched up.

Modified:
  head/sys/compat/cloudabi/cloudabi_fd.c

Modified: head/sys/compat/cloudabi/cloudabi_fd.c
==============================================================================
--- head/sys/compat/cloudabi/cloudabi_fd.c      Sat Jul 11 18:09:27 2015        
(r285398)
+++ head/sys/compat/cloudabi/cloudabi_fd.c      Sat Jul 11 18:39:16 2015        
(r285399)
@@ -76,7 +76,7 @@ int
 cloudabi_sys_fd_dup(struct thread *td, struct cloudabi_sys_fd_dup_args *uap)
 {
 
-       return (kern_dup(td, 0, uap->from, 0));
+       return (kern_dup(td, 0, 0, uap->from, 0));
 }
 
 int
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to