diff --git a/tests/libtest/cli_hx_download.c b/tests/libtest/cli_hx_download.c index af6df1449a..074881206e 100644 --- a/tests/libtest/cli_hx_download.c +++ b/tests/libtest/cli_hx_download.c @@ -214,13 +214,13 @@ static int my_progress_d_cb(void *userdata, assert(sspi_status == SEC_E_OK); (void)sspi_status; curl_mfprintf(stderr, "[t-%zu] info Schannel TLS version 0x%08lx\n", - t->idx, info.dwProtocol); + t->idx, (unsigned long)info.dwProtocol); break; } #endif default: - curl_mfprintf(stderr, "[t-%zu] info SSL_PTR backend=%u, ptr=%p\n", - t->idx, tls->backend, tls->internals); + curl_mfprintf(stderr, "[t-%zu] info SSL_PTR backend=%d, ptr=%p\n", + t->idx, (int)tls->backend, tls->internals); break; } }