summaryrefslogtreecommitdiff
path: root/cleanup.c
diff options
context:
space:
mode:
Diffstat (limited to 'cleanup.c')
-rw-r--r--cleanup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cleanup.c b/cleanup.c
index d0daaf1..9c71a27 100644
--- a/cleanup.c
+++ b/cleanup.c
@@ -184,7 +184,7 @@ _pthread_destructor_pop_all()
/* Stop destructor execution at a finite time. POSIX allows us
to ignore this if we like, even at the risk of an infinite loop.
*/
- for (count = 0; count < _PTHREAD_DESTRUCTOR_ITERATIONS; count++)
+ for (count = 0; count < PTHREAD_DESTRUCTOR_ITERATIONS; count++)
{
/* Loop through all destructors for this thread. */
while (current != NULL)