Merge pull request #260 from kaleb-himes/master

system read returns ssize_t, cast to int
This commit is contained in:
toddouska
2016-01-18 13:55:35 -08:00

View File

@ -695,7 +695,7 @@ static void* DoMonitor(void* arg)
break;
}
length = read(notifyFd, buff, 8192);
length = (int) read(notifyFd, buff, 8192);
if (length < 0) {
WOLFSSL_MSG("notify read problem, continue");
continue;