Skip to content

Commit

Permalink
fix a log line in cred.c
Browse files Browse the repository at this point in the history
  • Loading branch information
bobomb committed Jan 9, 2024
1 parent 779aca6 commit aef9540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cred.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ fido_dev_make_cred_tx(fido_dev_t *dev, fido_cred_t *cred, const char *pin,

if (cred->cdh.ptr == NULL || fido_int_array_is_empty(&cred->type)) {
fido_log_debug("%s: cdh=%p, type=%d", __func__,
(void *)cred->cdh.ptr, cred->type);
(void *)cred->cdh.ptr, fido_cred_type(&cred));
r = FIDO_ERR_INVALID_ARGUMENT;
goto fail;
}
Expand Down

0 comments on commit aef9540

Please sign in to comment.