mirror of
https://github.com/curl/curl.git
synced 2026-08-26 14:53:33 +03:00
lib: use FMT_ as prefix instead of CURL_FORMAT_
For printf format defines used internally. Makes the code slighly easier to read. Closes #14764
This commit is contained in:
parent
a2bcec0ee0
commit
4ff04615a0
40 changed files with 357 additions and 395 deletions
|
|
@ -2012,7 +2012,7 @@ static ssize_t cf_h2_recv(struct Curl_cfilter *cf, struct Curl_easy *data,
|
|||
* a read() is called anyway. It is not clear what the calling sequence
|
||||
* is for such a case. */
|
||||
failf(data, "http/2 recv on a transfer never opened "
|
||||
"or already cleared, mid=%" CURL_FORMAT_CURL_OFF_T, data->mid);
|
||||
"or already cleared, mid=%" FMT_OFF_T, data->mid);
|
||||
*err = CURLE_HTTP2;
|
||||
return -1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue