Add missing function parameter.

A function parameter got added in r285356, meaning that the call to
kern_dup() needs to be patched up.
This commit is contained in:
ed 2015-07-11 18:39:16 +00:00
parent 0ee1498c18
commit a75cc35b71

View File

@ -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