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:
parent
0ee1498c18
commit
a75cc35b71
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user