Skip to content

Commit

Permalink
Fix wront type argument to printf.
Browse files Browse the repository at this point in the history
  • Loading branch information
tjko committed Dec 19, 2023
1 parent b059b2e commit 4ac2804
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tls.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ struct altcp_tls_config* tls_server_config()
if (cert)
free(cert);

log_msg(LOG_DEBUG, "tls_server_config(): finished (%lx)", c);
log_msg(LOG_DEBUG, "tls_server_config(): finished (%p)", (void*)c);
return c;
}
#endif
Expand Down

0 comments on commit 4ac2804

Please sign in to comment.