summaryrefslogtreecommitdiff
path: root/cache-tree.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2015-08-22 01:08:05 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-09-07 03:01:13 (GMT)
commit895ff3b2c73c737b699a921fe71cea4dadefab7b (patch)
tree5e4900163660191be5544e4c4df14f6dd8d73bf9 /cache-tree.c
parenta62bc310bf033f38a23fb80f5ab2c9f6f05cd161 (diff)
downloadgit-895ff3b2c73c737b699a921fe71cea4dadefab7b.zip
git-895ff3b2c73c737b699a921fe71cea4dadefab7b.tar.gz
git-895ff3b2c73c737b699a921fe71cea4dadefab7b.tar.bz2
add and use a convenience macro ce_intent_to_add()
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache-tree.c')
-rw-r--r--cache-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cache-tree.c b/cache-tree.c
index 32772b9..e590346 100644
--- a/cache-tree.c
+++ b/cache-tree.c
@@ -377,7 +377,7 @@ static int update_one(struct cache_tree *it,
* they are not part of generated trees. Invalidate up
* to root to force cache-tree users to read elsewhere.
*/
- if (ce->ce_flags & CE_INTENT_TO_ADD) {
+ if (ce_intent_to_add(ce)) {
to_invalidate = 1;
continue;
}