Skip to content

Commit

Permalink
Fix debug builds
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastinas committed Jun 28, 2022
1 parent ffec721 commit 2658219
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions picnic3_simulate.c.i
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ static int SIM_ONLINE(mzd_local_t* maskedKey, randomTape_t* tapes, msgs_t* msgs,
if (ret) {
printf("%s: output does not match pubKey\n", __func__);
printf("pubKey: ");
print_hex(stdout, pubKey, params->output_size);
print_hex(stdout, pubKey, params->input_output_size);
printf("\noutput: ");
print_hex(stdout, output, params->output_size);
print_hex(stdout, output, params->input_output_size);
printf("\n");
}
#endif
Expand Down

0 comments on commit 2658219

Please sign in to comment.