Skip to content

Commit

Permalink
merge-tree: lose unused "flags" from merge_list
Browse files Browse the repository at this point in the history
Drop the unused field from the structure.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Dec 26, 2012
1 parent fa2364e commit b13112f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions builtin/merge-tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ struct merge_list {
struct merge_list *next;
struct merge_list *link; /* other stages for this object */

unsigned int stage : 2,
flags : 30;
unsigned int stage : 2;
unsigned int mode;
const char *path;
struct blob *blob;
Expand Down

0 comments on commit b13112f

Please sign in to comment.