summaryrefslogtreecommitdiff
path: root/builtin/receive-pack.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2016-01-20 11:43:29 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2016-01-20 11:43:29 -0800
commita736764a7b61534581021a21bc6bfc503b9cfa8f (patch)
treeafc0d6affb5a41ef36c169200c17deadbc4d0ff8 /builtin/receive-pack.c
parentMerge branch 'ew/send-email-mutt-alias-fix' (diff)
parentbswap: add NO_UNALIGNED_LOADS define (diff)
downloadtgif-a736764a7b61534581021a21bc6bfc503b9cfa8f.tar.xz
Merge branch 'jk/clang-pedantic'
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.c2
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]++;
}