summaryrefslogtreecommitdiff
path: root/private.c
diff options
context:
space:
mode:
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;