mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 18:58:32 +00:00
Fix compilation warning on MSVC
MSVC complains about the negation in `(uint32_t) -1u`. This commit fixes this by using `(uint32_t) -1` instead.
This commit is contained in:
parent
72a4f0338d
commit
6e5dd79a43
1 changed files with 1 additions and 1 deletions
|
@ -471,7 +471,7 @@ int mbedtls_net_poll( mbedtls_net_context *ctx, uint32_t rw, uint32_t timeout )
|
||||||
tv.tv_usec = ( timeout % 1000 ) * 1000;
|
tv.tv_usec = ( timeout % 1000 ) * 1000;
|
||||||
|
|
||||||
ret = select( fd + 1, &read_fds, &write_fds, NULL,
|
ret = select( fd + 1, &read_fds, &write_fds, NULL,
|
||||||
timeout == (uint32_t) -1u ? NULL : &tv );
|
timeout == (uint32_t) -1 ? NULL : &tv );
|
||||||
|
|
||||||
if( ret < 0 )
|
if( ret < 0 )
|
||||||
return( MBEDTLS_ERR_NET_POLL_FAILED );
|
return( MBEDTLS_ERR_NET_POLL_FAILED );
|
||||||
|
|
Loading…
Reference in a new issue