Merge pull request #275 from embedthis/fix-1

FIX: compiler warning with recvfrom on 64-bit
This commit is contained in:
Simon Butcher 2015-09-14 19:59:28 +01:00
commit 49641ad799

View File

@ -319,7 +319,7 @@ int mbedtls_net_accept( mbedtls_net_context *bind_ctx,
/* UDP: wait for a message, but keep it in the queue */
char buf[1] = { 0 };
ret = recvfrom( bind_ctx->fd, buf, sizeof( buf ), MSG_PEEK,
ret = (int) recvfrom( bind_ctx->fd, buf, sizeof( buf ), MSG_PEEK,
(struct sockaddr *) &client_addr, &n );
#if defined(_WIN32)