From: Kurt Zeilenga Date: Tue, 17 Aug 1999 00:10:43 +0000 (+0000) Subject: Fix tid vs thread typo X-Git-Tag: TWEB_OL_BASE~204 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=eea46a1bb422b054a3afb9524b46a8a29cf82766;p=openldap Fix tid vs thread typo --- 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;