curl_trc: fix build error when lacking verbose messages
Follow-up from 0b28ece657
Closes #13312
This commit is contained in:
parent
5adbf72b79
commit
9e848439d8
@ -138,9 +138,9 @@ void Curl_trc_read(struct Curl_easy *data,
|
|||||||
#else /* defined(CURL_DISABLE_VERBOSE_STRINGS) */
|
#else /* defined(CURL_DISABLE_VERBOSE_STRINGS) */
|
||||||
/* All informational messages are not compiled in for size savings */
|
/* All informational messages are not compiled in for size savings */
|
||||||
|
|
||||||
#define Curl_trc_is_verbose(d) ((void)(d), FALSE)
|
#define Curl_trc_is_verbose(d) (FALSE)
|
||||||
#define Curl_trc_cf_is_verbose(x,y) ((void)(x), (void)(y), FALSE)
|
#define Curl_trc_cf_is_verbose(x,y) (FALSE)
|
||||||
#define Curl_trc_ft_is_verbose(x,y) ((void)(x), (void)(y), FALSE)
|
#define Curl_trc_ft_is_verbose(x,y) (FALSE)
|
||||||
|
|
||||||
static void Curl_infof(struct Curl_easy *data, const char *fmt, ...)
|
static void Curl_infof(struct Curl_easy *data, const char *fmt, ...)
|
||||||
{
|
{
|
||||||
@ -154,6 +154,8 @@ static void Curl_trc_cf_infof(struct Curl_easy *data,
|
|||||||
(void)data; (void)cf; (void)fmt;
|
(void)data; (void)cf; (void)fmt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct curl_trc_feat;
|
||||||
|
|
||||||
static void Curl_trc_ft_infof(struct Curl_easy *data,
|
static void Curl_trc_ft_infof(struct Curl_easy *data,
|
||||||
struct curl_trc_feat *ft,
|
struct curl_trc_feat *ft,
|
||||||
const char *fmt, ...)
|
const char *fmt, ...)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user