Skip to content

Commit

Permalink
Use tab instead of spaces in kem_scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddy-M-K committed Jul 31, 2024
1 parent 548395d commit 92717fd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions scripts/copy_from_upstream/src/kem/family/kem_scheme.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,9 @@ OQS_API OQS_STATUS OQS_KEM_{{ family }}_{{ scheme['scheme'] }}_keypair_derand(ui
#endif
{%- endif %}
{%- else %}
(void)public_key;
(void)secret_key;
(void)coins;
(void)public_key;
(void)secret_key;
(void)coins;
return OQS_ERROR;
{%- endif %}
}
Expand Down Expand Up @@ -249,10 +249,10 @@ OQS_API OQS_STATUS OQS_KEM_{{ family }}_{{ scheme['scheme'] }}_encaps_derand(uin
#endif
{%- endif %}
{%- else %}
(void)ciphertext;
(void)shared_secret;
(void)public_key;
(void)coins;
(void)ciphertext;
(void)shared_secret;
(void)public_key;
(void)coins;
return OQS_ERROR;
{%- endif %}
}
Expand Down

0 comments on commit 92717fd

Please sign in to comment.