summaryrefslogtreecommitdiff
path: root/common/sha256.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/sha256.c')
-rw-r--r--common/sha256.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/sha256.c b/common/sha256.c
index b5e276fcf6..e8f9f185b3 100644
--- a/common/sha256.c
+++ b/common/sha256.c
@@ -215,7 +215,7 @@ uint8_t *SHA256_final(struct sha256_ctx *ctx)
SHA256_transform(ctx, ctx->block, block_nb);
- for (i = 0 ; i < 8; i++)
+ for (i = 0; i < 8; i++)
UNPACK32(ctx->h[i], &ctx->buf[i << 2]);
return ctx->buf;