mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-31 19:24:42 +02:00
Merge pull request #260 from kaleb-himes/master
system read returns ssize_t, cast to int
This commit is contained in:
@@ -695,7 +695,7 @@ static void* DoMonitor(void* arg)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
length = read(notifyFd, buff, 8192);
|
length = (int) read(notifyFd, buff, 8192);
|
||||||
if (length < 0) {
|
if (length < 0) {
|
||||||
WOLFSSL_MSG("notify read problem, continue");
|
WOLFSSL_MSG("notify read problem, continue");
|
||||||
continue;
|
continue;
|
||||||
|
Reference in New Issue
Block a user