From: René Scharfe Date: Sun, 2 Jun 2013 15:46:51 +0000 (+0200) Subject: cache: mark cache_entry pointers const X-Git-Tag: v1.8.4-rc0~195^2~6 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=20d142b48c8f2f50662db095e193836d0a8f5ad1;p=git-core%2Fgit.git cache: mark cache_entry pointers const Add const for pointers that are only dereferenced for reading by the inline functions copy_cache_entry and ce_mode_from_stat. This allows callers to pass in const pointers. Signed-off-by: René Scharfe Signed-off-by: Junio C Hamano --- diff --git a/cache.h b/cache.h index 94ca1acf7..43a27e7b3 100644 --- a/cache.h +++ b/cache.h @@ -190,7 +190,8 @@ struct cache_entry { * another. But we never change the name, or the hash state! */ #define CE_STATE_MASK (CE_HASHED | CE_UNHASHED) -static inline void copy_cache_entry(struct cache_entry *dst, struct cache_entry *src) +static inline void copy_cache_entry(struct cache_entry *dst, + const struct cache_entry *src) { unsigned int state = dst->ce_flags & CE_STATE_MASK; @@ -222,7 +223,8 @@ static inline unsigned int create_ce_mode(unsigned int mode) return S_IFGITLINK; return S_IFREG | ce_permissions(mode); } -static inline unsigned int ce_mode_from_stat(struct cache_entry *ce, unsigned int mode) +static inline unsigned int ce_mode_from_stat(const struct cache_entry *ce, + unsigned int mode) { extern int trust_executable_bit, has_symlinks; if (!has_symlinks && S_ISREG(mode) &&