diff options
author | Ronnie Sahlberg <sahlberg@google.com> | 2014-07-02 11:24:05 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-07-02 12:37:05 -0700 |
commit | 782735203c316041df120748e5e88c1787cdf4da (patch) | |
tree | 342151605fed889e345cb2f35ab3d46955cd6f0e /builtin/clean.c | |
parent | 7bbc4e8fdb33e0a8e42e77cc05460d4c4f615f4d (diff) | |
download | git-782735203c316041df120748e5e88c1787cdf4da.tar.gz git-782735203c316041df120748e5e88c1787cdf4da.tar.xz |
enums: remove trailing ',' after last item in enum
Signed-off-by: Ronnie Sahlberg <sahlberg@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/clean.c')
-rw-r--r-- | builtin/clean.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/clean.c b/builtin/clean.c index 615cd57ca..ceab18257 100644 --- a/builtin/clean.c +++ b/builtin/clean.c @@ -48,7 +48,7 @@ enum color_clean { CLEAN_COLOR_PROMPT = 2, CLEAN_COLOR_HEADER = 3, CLEAN_COLOR_HELP = 4, - CLEAN_COLOR_ERROR = 5, + CLEAN_COLOR_ERROR = 5 }; #define MENU_OPTS_SINGLETON 01 |