Skip to content

Commit

Permalink
Fix bit assignment for CE_CONFLICTED
Browse files Browse the repository at this point in the history
CE_WT_REMOVE has already grabbed the same value.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Jan 4, 2010
1 parent e11d7b5 commit bf96c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cache.h
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ struct cache_entry {

#define CE_HASHED (0x100000)
#define CE_UNHASHED (0x200000)
#define CE_CONFLICTED (0x400000)
#define CE_CONFLICTED (0x800000)

/*
* Extended on-disk flags
Expand Down

0 comments on commit bf96c93

Please sign in to comment.