From: Nicolas Pitre Date: Tue, 18 Aug 2009 00:18:23 +0000 (-0400) Subject: block-sha1: make the size member first in the context struct X-Git-Tag: v1.6.5-rc0~30^2~3 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d5f6a96fa4792f6143d06d9c0b572a96d7235305;p=git.git block-sha1: make the size member first in the context struct This is a 64-bit value, hence having it first provides a better alignment. Signed-off-by: Nicolas Pitre Signed-off-by: Junio C Hamano --- diff --git a/block-sha1/sha1.h b/block-sha1/sha1.h index c1ae74d3d..81abfd4c1 100644 --- a/block-sha1/sha1.h +++ b/block-sha1/sha1.h @@ -5,9 +5,9 @@ */ typedef struct { + unsigned long long size; unsigned int H[5]; unsigned int W[16]; - unsigned long long size; } blk_SHA_CTX; void blk_SHA1_Init(blk_SHA_CTX *ctx);