Skip to content

Commit

Permalink
Merge branch 'jk/suppress-clang-warning'
Browse files Browse the repository at this point in the history
* jk/suppress-clang-warning:
  fix clang -Wtautological-compare with unsigned enum
  • Loading branch information
Junio C Hamano committed Mar 25, 2013
2 parents 9b12c6e + 3ce3ffb commit edb99f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion grep.c
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,8 @@ static struct grep_expr *prep_header_patterns(struct grep_opt *opt)
for (p = opt->header_list; p; p = p->next) {
if (p->token != GREP_PATTERN_HEAD)
die("bug: a non-header pattern in grep header list.");
if (p->field < 0 || GREP_HEADER_FIELD_MAX <= p->field)
if (p->field < GREP_HEADER_FIELD_MIN ||
GREP_HEADER_FIELD_MAX <= p->field)
die("bug: unknown header field %d", p->field);
compile_regexp(p, opt);
}
Expand Down
3 changes: 2 additions & 1 deletion grep.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ enum grep_context {
};

enum grep_header_field {
GREP_HEADER_AUTHOR = 0,
GREP_HEADER_FIELD_MIN = 0,
GREP_HEADER_AUTHOR = GREP_HEADER_FIELD_MIN,
GREP_HEADER_COMMITTER,
GREP_HEADER_REFLOG,

Expand Down

0 comments on commit edb99f9

Please sign in to comment.