Skip to content

Commit f673c4a

Browse files
committed
Fix crypto loading/unloading message
1 parent 501da57 commit f673c4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

picoquic/tls_api.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,12 +155,12 @@ static int tls_api_is_init = 0;
155155
void picoquic_tls_api_init_providers(int unload)
156156
{
157157
if ((tls_api_init_flags & TLS_API_INIT_FLAGS_NO_MINICRYPTO) == 0) {
158-
DBG_PRINTF("%s", "%s minicrypto", (unload)?"Unloading":"Loading");
158+
DBG_PRINTF("%s minicrypto", (unload)?"Unloading":"Loading");
159159
picoquic_ptls_minicrypto_load(unload);
160160
}
161161
#ifndef PTLS_WITHOUT_OPENSSL
162162
if ((tls_api_init_flags & TLS_API_INIT_FLAGS_NO_OPENSSL) == 0) {
163-
DBG_PRINTF("%s", "%s openssl", (unload)?"Unloading":"Loading");
163+
DBG_PRINTF("%s openssl", (unload)?"Unloading":"Loading");
164164
picoquic_ptls_openssl_load(unload);
165165
}
166166
#else

0 commit comments

Comments
 (0)