diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-10-15 15:27:51 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-10-16 10:27:27 -0700 |
commit | 6b2dd0e56ba2bd668396afe9e983dddfd1f441ca (patch) | |
tree | ed9f01bf9190495b7fe4874d93e979e5c48c30d4 /block-sha1 | |
parent | 5f050e3c4ce05de13f24157ca7d3452362e673dc (diff) | |
download | git-6b2dd0e56ba2bd668396afe9e983dddfd1f441ca.tar.gz |
block-sha1/sha1.c: have SP around arithmetic operatorsfc/styles
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'block-sha1')
-rw-r--r-- | block-sha1/sha1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block-sha1/sha1.c b/block-sha1/sha1.c index a8d4bf9301..e1a1eb6097 100644 --- a/block-sha1/sha1.c +++ b/block-sha1/sha1.c @@ -274,10 +274,10 @@ void blk_SHA1_Final(unsigned char hashout[20], blk_SHA_CTX *ctx) padlen[1] = htonl((uint32_t)(ctx->size << 3)); i = ctx->size & 63; - blk_SHA1_Update(ctx, pad, 1+ (63 & (55 - i))); + blk_SHA1_Update(ctx, pad, 1 + (63 & (55 - i))); blk_SHA1_Update(ctx, padlen, 8); /* Output hash */ for (i = 0; i < 5; i++) - put_be32(hashout + i*4, ctx->H[i]); + put_be32(hashout + i * 4, ctx->H[i]); } |