summaryrefslogtreecommitdiff
path: root/nuttx/sched/sched_self.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/sched_self.c')
-rw-r--r--nuttx/sched/sched_self.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/sched_self.c b/nuttx/sched/sched_self.c
index 9517e6306..901fb6e69 100644
--- a/nuttx/sched/sched_self.c
+++ b/nuttx/sched/sched_self.c
@@ -75,9 +75,9 @@
*
****************************************************************************/
-FAR _TCB *sched_self(void)
+FAR struct tcb_s *sched_self(void)
{
- return (FAR _TCB*)g_readytorun.head;
+ return (FAR struct tcb_s*)g_readytorun.head;
}