diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2012-07-22 18:40:54 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-07-22 21:13:53 -0700 |
commit | 23119ffb4ea91cdf30016254df60e1adc64b478c (patch) | |
tree | cf66c7b3677c0d1a11b1218aa8d06b3a27f4e235 | |
parent | 5f6a11259ab0045a9f79bd789393de7a77e3c5d6 (diff) | |
download | git-23119ffb4ea91cdf30016254df60e1adc64b478c.tar.gz git-23119ffb4ea91cdf30016254df60e1adc64b478c.tar.xz |
block-sha1: put expanded macro parameters in parentheses
't' is currently always a numeric constant, but it can't hurt to
prepare for the day that it becomes useful for a caller to pass in a
more complex expression.
Suggested-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-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 10fd94d17..6f885c433 100644 --- a/block-sha1/sha1.c +++ b/block-sha1/sha1.c @@ -100,8 +100,8 @@ * Where do we get the source from? The first 16 iterations get it from * the input data, the next mix it from the 512-bit array. */ -#define SHA_SRC(t) get_be32((unsigned char *) block + t*4) -#define SHA_MIX(t) SHA_ROL(W(t+13) ^ W(t+8) ^ W(t+2) ^ W(t), 1) +#define SHA_SRC(t) get_be32((unsigned char *) block + (t)*4) +#define SHA_MIX(t) SHA_ROL(W((t)+13) ^ W((t)+8) ^ W((t)+2) ^ W(t), 1); #define SHA_ROUND(t, input, fn, constant, A, B, C, D, E) do { \ unsigned int TEMP = input(t); setW(t, TEMP); \ |