summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-02-05 22:54:09 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-02-05 22:54:09 (GMT)
commit6e29ac23027ed9993c32e1f68d79068498a25165 (patch)
treefdf1b56baebc6685b22811304302184d948eb751 /cache.h
parent25b1166ab2d4cb1685ecc26a36c35756ed5e1d4d (diff)
parenta0df2e5a7efe90e932af66e70ba6c863a5826833 (diff)
downloadgit-6e29ac23027ed9993c32e1f68d79068498a25165.zip
git-6e29ac23027ed9993c32e1f68d79068498a25165.tar.gz
git-6e29ac23027ed9993c32e1f68d79068498a25165.tar.bz2
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 'cache.h')
-rw-r--r--cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index c63fcc1..ee0adc8 100644
--- a/cache.h
+++ b/cache.h
@@ -214,7 +214,7 @@ struct cache_entry {
#define CE_INTENT_TO_ADD (1 << 29)
#define CE_SKIP_WORKTREE (1 << 30)
/* CE_EXTENDED2 is for future extension */
-#define CE_EXTENDED2 (1 << 31)
+#define CE_EXTENDED2 (1U << 31)
#define CE_EXTENDED_FLAGS (CE_INTENT_TO_ADD | CE_SKIP_WORKTREE)