Skip to content

Commit

Permalink
Merge pull request #195 from linuxunderground/clang-fix
Browse files Browse the repository at this point in the history
sign_state.c:74:23: error: incompatible pointer to integer conversion…
  • Loading branch information
yoe authored Mar 14, 2024
2 parents b302927 + 8555925 commit ae562e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/sign_state.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ TEST_FUNC(sign_state) {
printf("Robot not present, can't do this test...\n");
return TEST_RV_SKIP;
}
check_rv_long(C_Sign(NULL, data, sizeof(data), NULL, &sig_len), m_p11_noinit);
check_rv_long(C_Sign(NULL_PTR, data, sizeof(data), NULL, &sig_len), m_p11_noinit);

check_rv(C_Initialize(NULL_PTR));

Expand Down

0 comments on commit ae562e2

Please sign in to comment.