Unsigned int is a closer representation of bitflags rather than signed int 
that uses 1 special bit for sign.This shouldn't make much difference because 
rev_list_info.flags uses only 2 bits(BISECT_SHOW_ALL and REV_LIST_QUIET)

Signed-off-by: Robert Stanca <robert.stan...@gmail.com>
---
 bisect.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bisect.h b/bisect.h
index acd12ef80..a979a7f11 100644
--- a/bisect.h
+++ b/bisect.h
@@ -16,7 +16,7 @@ extern struct commit_list *filter_skipped(struct commit_list 
*list,
 
 struct rev_list_info {
        struct rev_info *revs;
-       int flags;
+       unsigned int flags;
        int show_timestamp;
        int hdr_termination;
        const char *header_prefix;
-- 
2.12.2.575.gb14f27f91.dirty

Reply via email to