summaryrefslogtreecommitdiff
path: root/nuttx/sched/task_posixspawn.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/task_posixspawn.c')
-rw-r--r--nuttx/sched/task_posixspawn.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/nuttx/sched/task_posixspawn.c b/nuttx/sched/task_posixspawn.c
index 4201e759b..7bb9c9a4d 100644
--- a/nuttx/sched/task_posixspawn.c
+++ b/nuttx/sched/task_posixspawn.c
@@ -40,6 +40,7 @@
#include <nuttx/config.h>
#include <sys/wait.h>
+#include <unistd.h>
#include <semaphore.h>
#include <signal.h>
#include <sched.h>
@@ -431,7 +432,7 @@ static int spawn_proxy(int argc, char *argv[])
* What should we do in the event of a failure?
*/
- int tmp = task_reparent(0, 0, *g_ps_parms.pid);
+ int tmp = task_reparent(0, *g_ps_parms.pid);
if (tmp < 0)
{
sdbg("ERROR: task_reparent() failed: %d\n", tmp);