Import ITS#255 cthread typo fix from -devel.

This commit is contained in:
Kurt Zeilenga 1999-08-17 00:11:38 +00:00
parent b971ecfe1d
commit bfde72d8d0

View file

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