diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-02-05 14:54:09 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-02-05 14:54:09 -0800 |
commit | 6e29ac23027ed9993c32e1f68d79068498a25165 (patch) | |
tree | fdf1b56baebc6685b22811304302184d948eb751 /builtin/receive-pack.c | |
parent | 25b1166ab2d4cb1685ecc26a36c35756ed5e1d4d (diff) | |
parent | a0df2e5a7efe90e932af66e70ba6c863a5826833 (diff) | |
download | git-6e29ac23027ed9993c32e1f68d79068498a25165.tar.gz |
Merge branch 'jk/clang-pedantic' into maint
A few unportable C construct have been spotted by clang compiler
and have been fixed.
* jk/clang-pedantic:
bswap: add NO_UNALIGNED_LOADS define
avoid shifting signed integers 31 bits
Diffstat (limited to 'builtin/receive-pack.c')
-rw-r--r-- | builtin/receive-pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/receive-pack.c b/builtin/receive-pack.c index ca38131873..2b3b746fb4 100644 --- a/builtin/receive-pack.c +++ b/builtin/receive-pack.c @@ -1618,7 +1618,7 @@ static void prepare_shallow_update(struct command *commands, continue; si->need_reachability_test[i]++; for (k = 0; k < 32; k++) - if (si->used_shallow[i][j] & (1 << k)) + if (si->used_shallow[i][j] & (1U << k)) si->shallow_ref[j * 32 + k]++; } |