Fix tid vs thread typo

This commit is contained in:
Kurt Zeilenga 1999-08-17 00:10:43 +00:00
parent 3f52596360
commit eea46a1bb4

View file

@ -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;