summaryrefslogtreecommitdiff
path: root/private.c
diff options
context:
space:
mode:
authorrpj <rpj>1998-07-23 17:12:12 +0000
committerrpj <rpj>1998-07-23 17:12:12 +0000
commit63ed0e78ffb72a9f425928344355c2159830b5af (patch)
tree391078160e36b786d62c3505fd2c410607924f79 /private.c
parent5b4731d25e148347d190d8ceb5f3f7aa2a7dac86 (diff)
Fri Jul 24 03:00:25 1998 Ross Johnson <rpj@ixobrychus.canberra.edu.au>
* attr.c (pthread_attr_destroy): Fix merge conflicts. (pthread_attr_getdetachstate): Fix merge conflicts. (pthread_attr_setdetachstate): Fix merge conflicts. * pthread.h: Fix merge conflicts. * sync.c (pthread_join): Fix merge conflicts.
Diffstat (limited to 'private.c')
-rw-r--r--private.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/private.c b/private.c
index 4e5f9ed..e65e95e 100644
--- a/private.c
+++ b/private.c
@@ -92,12 +92,12 @@ _pthread_find_thread_entry(pthread_t thread)
/* Wrap to top of table. */
this = _pthread_threads_table;
}
+ }
- if (this->thread == NULL || this == start)
- {
- /* Failed to find the thread. */
- return -1;
- }
+ if (this->thread == NULL || this == start)
+ {
+ /* Failed to find the thread. */
+ return -1;
}
return this;