Skip to content

Commit b13112f

Browse files
committed
merge-tree: lose unused "flags" from merge_list
Drop the unused field from the structure. Signed-off-by: Junio C Hamano <[email protected]>
1 parent fa2364e commit b13112f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

builtin/merge-tree.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ struct merge_list {
1212
struct merge_list *next;
1313
struct merge_list *link; /* other stages for this object */
1414

15-
unsigned int stage : 2,
16-
flags : 30;
15+
unsigned int stage : 2;
1716
unsigned int mode;
1817
const char *path;
1918
struct blob *blob;

0 commit comments

Comments
 (0)