system read return size_t, cast to int

remove whitespace
This commit is contained in:
kaleb-himes 2016-01-15 16:00:27 -07:00
parent 014b849af4
commit 71741847d3

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;