mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-25 04:09:31 +03:00
mhd_sockets.h: minor micros fixes
This commit is contained in:
@@ -276,7 +276,7 @@
|
||||
* @return ssize_t type value
|
||||
*/
|
||||
#define MHD_send_(s,b,l) \
|
||||
((ssize_t)send((s),(const void*)(b),((MHD_SCKT_SEND_SIZE_)l), MAYBE_MSG_NOSIGNAL))
|
||||
((ssize_t)send((s),(const void*)(b),(MHD_SCKT_SEND_SIZE_)(l), MAYBE_MSG_NOSIGNAL))
|
||||
|
||||
|
||||
/**
|
||||
@@ -287,7 +287,7 @@
|
||||
* @return ssize_t type value
|
||||
*/
|
||||
#define MHD_recv_(s,b,l) \
|
||||
((ssize_t)recv((s),(void*)(b),((MHD_SCKT_SEND_SIZE_)l), 0))
|
||||
((ssize_t)recv((s),(void*)(b),(MHD_SCKT_SEND_SIZE_)(l), 0))
|
||||
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user