aboutsummaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorpx4dev <px4@purgatory.org>2013-01-24 00:22:01 -0800
committerpx4dev <px4@purgatory.org>2013-01-24 00:22:01 -0800
commit379ed0a0922362a1bb92d03a661684a87824454d (patch)
tree0797c06383b9e46a0668abeae91c0f13767899c9 /nuttx
parent35febbe8441d0932881940eb2633080ab23f1e28 (diff)
downloadpx4-firmware-379ed0a0922362a1bb92d03a661684a87824454d.tar.gz
px4-firmware-379ed0a0922362a1bb92d03a661684a87824454d.tar.bz2
px4-firmware-379ed0a0922362a1bb92d03a661684a87824454d.zip
Trivial compile fix.
Diffstat (limited to 'nuttx')
-rw-r--r--nuttx/sched/task_setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/sched/task_setup.c b/nuttx/sched/task_setup.c
index 80aefded3..43ed24b32 100644
--- a/nuttx/sched/task_setup.c
+++ b/nuttx/sched/task_setup.c
@@ -219,7 +219,7 @@ static inline void task_saveparent(FAR _TCB *tcb, uint8_t ttype)
}
}
#else
-# define task_saveparent(tcb)
+# define task_saveparent(tcb, type)
#endif
/****************************************************************************