Extra braces

This commit is contained in:
Frank Denis 2017-12-21 16:57:04 +01:00
parent fb53590047
commit bee480cfd3

View File

@ -51,9 +51,9 @@ blake2b_is_lastblock(const blake2b_state *S)
static inline int
blake2b_set_lastblock(blake2b_state *S)
{
if (S->last_node)
if (S->last_node) {
blake2b_set_lastnode(S);
}
S->f[0] = -1;
return 0;
}