summaryrefslogtreecommitdiff
path: root/nuttx/sched/exit.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/exit.c')
-rw-r--r--nuttx/sched/exit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/sched/exit.c b/nuttx/sched/exit.c
index 7e50c273c..ec3f1b928 100644
--- a/nuttx/sched/exit.c
+++ b/nuttx/sched/exit.c
@@ -92,7 +92,7 @@
void exit(int status)
{
- _TCB *tcb = (_TCB*)g_readytorun.head;
+ struct tcb_s *tcb = (struct tcb_s*)g_readytorun.head;
/* Only the lower 8-bits of status are used */