summaryrefslogtreecommitdiffstats
path: root/nuttx/sched/pthread_removejoininfo.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/pthread_removejoininfo.c')
-rw-r--r--nuttx/sched/pthread_removejoininfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/pthread_removejoininfo.c b/nuttx/sched/pthread_removejoininfo.c
index ecdc6d99e1..33fb243918 100644
--- a/nuttx/sched/pthread_removejoininfo.c
+++ b/nuttx/sched/pthread_removejoininfo.c
@@ -81,7 +81,7 @@
*
************************************************************/
-join_t *pthread_removejoininfo(int pid)
+join_t *pthread_removejoininfo(pid_t pid)
{
join_t *prev;
join_t *join;
@@ -89,7 +89,7 @@ join_t *pthread_removejoininfo(int pid)
/* Find the entry with the matching pid */
for (prev = NULL, join = g_pthread_head;
- (join && join->thread.pid != pid);
+ (join && (pid_t)join->thread != pid);
prev = join, join = join->next);
/* Remove it from the data set. */