mirror of
https://github.com/curl/curl.git
synced 2026-08-06 20:26:14 +03:00
build: fix -Wformat-signedness by adjusting printf masks
- sync printf masks with the passed value. - fix a couple of casts. Cherry-picked from #20848 Closes #21335
This commit is contained in:
parent
54cc65595d
commit
548c16a824
56 changed files with 127 additions and 127 deletions
|
|
@ -253,7 +253,7 @@ static CURLMcode mev_sh_entry_update(struct Curl_multi *multi,
|
|||
DEBUGASSERT(entry->writers + entry->readers);
|
||||
|
||||
CURL_TRC_M(data, "ev update fd=%" FMT_SOCKET_T ", action '%s%s' -> '%s%s'"
|
||||
" (%d/%d r/w)", s,
|
||||
" (%u/%u r/w)", s,
|
||||
(last_action & CURL_POLL_IN) ? "IN" : "",
|
||||
(last_action & CURL_POLL_OUT) ? "OUT" : "",
|
||||
(cur_action & CURL_POLL_IN) ? "IN" : "",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue