]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
curl_trc: fix build error when lacking verbose messages
authorDaniel Stenberg <daniel@haxx.se>
Mon, 8 Apr 2024 07:49:11 +0000 (09:49 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 8 Apr 2024 11:57:14 +0000 (13:57 +0200)
Follow-up from 0b28ece657b2273
Closes #13312

lib/curl_trc.h

index 1440f496238844c7f1ee13d80fa3e588c20327a8..f64150feaf99dae482e0ab2a16e2562b4e9cbde3 100644 (file)
@@ -138,9 +138,9 @@ void Curl_trc_read(struct Curl_easy *data,
 #else /* defined(CURL_DISABLE_VERBOSE_STRINGS) */
 /* All informational messages are not compiled in for size savings */
 
-#define Curl_trc_is_verbose(d)        ((void)(d), FALSE)
-#define Curl_trc_cf_is_verbose(x,y)   ((void)(x), (void)(y), FALSE)
-#define Curl_trc_ft_is_verbose(x,y)   ((void)(x), (void)(y), FALSE)
+#define Curl_trc_is_verbose(d)        (FALSE)
+#define Curl_trc_cf_is_verbose(x,y)   (FALSE)
+#define Curl_trc_ft_is_verbose(x,y)   (FALSE)
 
 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;
 }
 
+struct curl_trc_feat;
+
 static void Curl_trc_ft_infof(struct Curl_easy *data,
                               struct curl_trc_feat *ft,
                               const char *fmt, ...)