Skip to content

Commit

Permalink
fix wrong type of arguments to formatting function
Browse files Browse the repository at this point in the history
  • Loading branch information
zachmann committed Jul 11, 2024
1 parent e5bb3cf commit 8d8d0db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/oidc-agent/oidcp/oidcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ int _waitForCodeExchangeRequest(time_t expiration, const char* expected_state,
SEC_FREE_KEY_VALUES();
time_t remaining_time = expiration - time(NULL);
char* error_msg = oidc_sprintf(
"request currently not acceptable; please try again later (%ls)",
"request currently not acceptable; please try again later (%lds)",
remaining_time);
server_ipc_write(*(con->msgsock), RESPONSE_ERROR, error_msg);
secFree(error_msg);
Expand Down

0 comments on commit 8d8d0db

Please sign in to comment.