From: Kurt Zeilenga Date: Tue, 17 Aug 1999 00:11:38 +0000 (+0000) Subject: Import ITS#255 cthread typo fix from -devel. X-Git-Tag: OPENLDAP_REL_ENG_1_2_7~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfde72d8d0c6d258077c3124dc61f65ebc8bb68b;p=thirdparty%2Fopenldap.git Import ITS#255 cthread typo fix from -devel. --- diff --git a/libraries/liblthread/thr_cthreads.c b/libraries/liblthread/thr_cthreads.c index 6eddb69317..97f0dc7f2c 100644 --- a/libraries/liblthread/thr_cthreads.c +++ b/libraries/liblthread/thr_cthreads.c @@ -47,7 +47,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;