mirror of
https://github.com/curl/curl.git
synced 2026-08-25 06:03:32 +03:00
tidy-up: macro parentheses
Add missing and drop redundant parentheses. Also: fix whitespace. Ref: #20690 Closes #20710
This commit is contained in:
parent
be2499f7dd
commit
102d4c8ba9
9 changed files with 22 additions and 22 deletions
|
|
@ -3254,10 +3254,10 @@ CURL_EXTERN const char *curl_share_strerror(CURLSHcode error);
|
|||
CURL_EXTERN CURLcode curl_easy_pause(CURL *handle, int bitmask);
|
||||
|
||||
#define CURLPAUSE_RECV (1 << 0)
|
||||
#define CURLPAUSE_RECV_CONT (0)
|
||||
#define CURLPAUSE_RECV_CONT 0
|
||||
|
||||
#define CURLPAUSE_SEND (1 << 2)
|
||||
#define CURLPAUSE_SEND_CONT (0)
|
||||
#define CURLPAUSE_SEND_CONT 0
|
||||
|
||||
#define CURLPAUSE_ALL (CURLPAUSE_RECV | CURLPAUSE_SEND)
|
||||
#define CURLPAUSE_CONT (CURLPAUSE_RECV_CONT | CURLPAUSE_SEND_CONT)
|
||||
|
|
|
|||
|
|
@ -329,7 +329,7 @@ curl_multi_socket_all(CURLM *multi_handle, int *running_handles);
|
|||
/* This macro below was added in 7.16.3 to push users who recompile to use
|
||||
* the new curl_multi_socket_action() instead of the old curl_multi_socket()
|
||||
*/
|
||||
#define curl_multi_socket(x,y,z) curl_multi_socket_action(x,y,0,z)
|
||||
#define curl_multi_socket(x, y, z) curl_multi_socket_action(x, y, 0, z)
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue