Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

Commit

Permalink
add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
ftheirs committed Jan 21, 2022
1 parent 784abcf commit f5e1f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/crypto.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ zxerr_t crypto_extractPublicKey(key_kind_e addressKind, const uint32_t path[HDPA
{
MEMZERO(&cx_privateKey, sizeof(cx_privateKey));
MEMZERO(privateKeyData, SK_LEN_25519);
CLOSE_TRY
CLOSE_TRY;
return zxerr_unknown;
}
FINALLY
Expand Down

0 comments on commit f5e1f31

Please sign in to comment.