summaryrefslogtreecommitdiff
path: root/nuttx/arch/8051/src/up_exit.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/8051/src/up_exit.c')
-rw-r--r--nuttx/arch/8051/src/up_exit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/arch/8051/src/up_exit.c b/nuttx/arch/8051/src/up_exit.c
index 27b9fe138..c96467bf9 100644
--- a/nuttx/arch/8051/src/up_exit.c
+++ b/nuttx/arch/8051/src/up_exit.c
@@ -77,7 +77,7 @@
void _exit(int status)
{
- FAR _TCB* tcb;
+ FAR struct tcb_s* tcb;
dbg("TCB=%p exitting\n", tcb);
@@ -95,7 +95,7 @@ void _exit(int status)
* head of the list.
*/
- tcb = (FAR _TCB*)g_readytorun.head;
+ tcb = (FAR struct tcb_s*)g_readytorun.head;
dbg("New Active Task TCB=%p\n", tcb);
/* Then switch contexts */