Fixed missing includes and typo.

This commit is contained in:
Armin Novak 2014-10-27 11:45:39 +01:00
parent 8f98f28ce8
commit 5bf25fd87c
2 changed files with 3 additions and 1 deletions

View File

@ -209,7 +209,7 @@ DWORD WaitForSingleObject(HANDLE hHandle, DWORD dwMilliseconds)
WLog_ERR(TAG, "waitOnFd() failure [%d] %s", errno, strerror(errno));
return WAIT_FAILED;
}
>
if (status != 1)
return WAIT_TIMEOUT;

View File

@ -89,6 +89,8 @@
#include "thread.h"
#include "../handle/handle.h"
#include "../log.h"
#define TAG WINPR_TAG("thread")
static pthread_once_t thread_initialized = PTHREAD_ONCE_INIT;