Skip to content

Commit

Permalink
enums: remove trailing ',' after last item in enum
Browse files Browse the repository at this point in the history
Signed-off-by: Ronnie Sahlberg <sahlberg@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Ronnie Sahlberg authored and Junio C Hamano committed Jul 2, 2014
1 parent 64d8454 commit 95acfc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/tag.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ static int in_commit_list(const struct commit_list *want, struct commit *c)
enum contains_result {
CONTAINS_UNKNOWN = -1,
CONTAINS_NO = 0,
CONTAINS_YES = 1,
CONTAINS_YES = 1
};

/*
Expand Down

0 comments on commit 95acfc2

Please sign in to comment.