]> git.ipfire.org Git - thirdparty/git.git/commitdiff
merge-tree: lose unused "flags" from merge_list
authorJunio C Hamano <gitster@pobox.com>
Thu, 6 Dec 2012 23:41:04 +0000 (15:41 -0800)
committerJunio C Hamano <gitster@pobox.com>
Wed, 26 Dec 2012 22:44:47 +0000 (14:44 -0800)
Drop the unused field from the structure.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/merge-tree.c

index ebd0d25db6b5505cb89fd79cee4d36d12cc9d092..b61d811158c1dff8d4b8326fbbd7489e0e50488d 100644 (file)
@@ -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;