Skip to content

Commit

Permalink
NO-JIRA: placate C compiler warning with explicit cast for printf arg…
Browse files Browse the repository at this point in the history
…ument
  • Loading branch information
Cliff Jansen committed Apr 18, 2024
1 parent 1f5b149 commit f8fd68f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c/tests/threaderciser.c
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ static bool handle(global *g, pn_event_t *e) {
if (lctx->pn_listener) {
pn_netaddr_str(pn_listener_addr(lctx->pn_listener), lctx->addr, sizeof(lctx->addr));
}
debug("[%p] listening on %s", lctx->pn_listener, lctx->addr);
debug("[%p] listening on %s", (void *)lctx->pn_listener, lctx->addr);
pthread_mutex_unlock(&lctx->lock);
cpool_connect(&g->connections_active, g->proactor, lctx->addr); /* Initial connection */
break;
Expand Down

0 comments on commit f8fd68f

Please sign in to comment.