diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-01-20 11:43:29 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-01-20 11:43:29 -0800 |
commit | a736764a7b61534581021a21bc6bfc503b9cfa8f (patch) | |
tree | afc0d6affb5a41ef36c169200c17deadbc4d0ff8 /cache.h | |
parent | 63aeeba99380cdf3b738ff10d3ab80f19286fcd1 (diff) | |
parent | a0df2e5a7efe90e932af66e70ba6c863a5826833 (diff) | |
download | git-a736764a7b61534581021a21bc6bfc503b9cfa8f.tar.gz |
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 'cache.h')
-rw-r--r-- | cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -215,7 +215,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) |