MFi386: fork1 apparently takes 4 args now

Forgotten by: scottl
This commit is contained in:
Andrew Gallatin 2002-10-02 14:30:14 +00:00
parent 61d7477610
commit 5f570c5179

View File

@ -161,7 +161,7 @@ linux_clone(struct thread *td, struct linux_clone_args *args)
error = 0;
start = 0;
if ((error = fork1(td, ff, &p2)) != 0)
if ((error = fork1(td, ff, 0, &p2)) != 0)
return (error);
PROC_LOCK(p2);