mirror of
https://github.com/curl/curl.git
synced 2026-08-25 03:43:31 +03:00
transfer: Replace __func__ instances with function name
.. also make __func__ replacement in multi. Prior to this change debug builds would fail to build if the compiler was building pre-c99 and didn't support __func__.
This commit is contained in:
parent
3d38a38012
commit
dd23c49546
2 changed files with 4 additions and 3 deletions
|
|
@ -1509,7 +1509,8 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||
break;
|
||||
}
|
||||
|
||||
DEBUGF(infof(data, "%s:%d call Curl_readwrite\n", __func__, __LINE__));
|
||||
DEBUGF(infof(data, "multi_runsingle:%d call Curl_readwrite\n",
|
||||
__LINE__));
|
||||
|
||||
/* read/write data if it is ready to do so */
|
||||
result = Curl_readwrite(data->easy_conn, &done);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue