Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
enums: remove trailing ',' after last item in enum
author
Ronnie Sahlberg
<sahlberg@google.com>
Wed, 2 Jul 2014 18:24:05 +0000
(11:24 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 2 Jul 2014 19:52:55 +0000
(12:52 -0700)
Signed-off-by: Ronnie Sahlberg <sahlberg@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/tag.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
64d8454
)
diff --git
a/builtin/tag.c
b/builtin/tag.c
index c6e8a7112700c03b2615f9c99c9858884128ab25..ef765563388c384a127d27eaf7ee6fd1badfe84f 100644
(file)
--- a/
builtin/tag.c
+++ b/
builtin/tag.c
@@
-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
};
/*