From eea46a1bb422b054a3afb9524b46a8a29cf82766 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Tue, 17 Aug 1999 00:10:43 +0000 Subject: [PATCH] Fix tid vs thread typo --- libraries/libldap_r/thr_cthreads.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/libldap_r/thr_cthreads.c b/libraries/libldap_r/thr_cthreads.c index f6526b16ed..5eda39c798 100644 --- a/libraries/libldap_r/thr_cthreads.c +++ b/libraries/libldap_r/thr_cthreads.c @@ -53,7 +53,7 @@ int ldap_pvt_thread_join( ldap_pvt_thread_t thread, void **thread_return ) { void *status; - status = (void *) cthread_join ( tid ); + status = (void *) cthread_join ( thread ); if (thread_return != NULL) { *thread_return = status; -- 2.39.5