libfreerdp-utils/thread: fix incorrect waiting time in freerdp_thread_stop.

This commit is contained in:
Vic Lee 2011-10-19 22:10:45 +08:00
parent 4c6b273639
commit f14145eadc

View File

@ -70,7 +70,7 @@ void freerdp_thread_stop(freerdp_thread* thread)
while (thread->status > 0 && i < 1000)
{
i++;
freerdp_usleep(100);
freerdp_usleep(100000);
}
}