commit 5eae5d9ba24556d1aafb296b753d0f6edb652fd6
parent 9a6ebcd612b326acb9485b8c9139bd83c67306bc
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Mon, 13 Dec 2021 17:09:38 +0300
https tests: mute compiler warning on old systems
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/testcurl/https/test_https_session_info.c b/src/testcurl/https/test_https_session_info.c
@@ -231,6 +231,7 @@ main (int argc, char *const *argv)
return errorCount != 0 ? 1 : 0;
#else /* LIBCURL_VERSION_NUM < 0x072200 */
(void) argc; (void) argv; /* Unused. Silent compiler warning. */
+ (void) query_session_ahc; /* Mute compiler warning */
return 77;
#endif /* LIBCURL_VERSION_NUM < 0x072200 */
}