summaryrefslogtreecommitdiff
path: root/src/commit_graph.c
diff options
context:
space:
mode:
authorPeter Pettersson <boretrk@hotmail.com>2021-10-22 22:51:59 +0200
committerPeter Pettersson <boretrk@hotmail.com>2021-11-15 16:45:40 +0100
commit7dcc29fc4652caeb09de39827cfd1a80726b5995 (patch)
tree74992ead7b05460f0d6a9fcc894f3dc9a3cbaea7 /src/commit_graph.c
parent43d9f0e3fe96823d88475fd9edae07732c84dbc8 (diff)
downloadlibgit2-7dcc29fc4652caeb09de39827cfd1a80726b5995.tar.gz
Make enum in src,tests and examples C90 compliant by removing trailing comma.
Diffstat (limited to 'src/commit_graph.c')
-rw-r--r--src/commit_graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commit_graph.c b/src/commit_graph.c
index f9a4bd2b2..924a3992b 100644
--- a/src/commit_graph.c
+++ b/src/commit_graph.c
@@ -754,7 +754,7 @@ enum generation_number_commit_state {
GENERATION_NUMBER_COMMIT_STATE_UNVISITED = 0,
GENERATION_NUMBER_COMMIT_STATE_ADDED = 1,
GENERATION_NUMBER_COMMIT_STATE_EXPANDED = 2,
- GENERATION_NUMBER_COMMIT_STATE_VISITED = 3,
+ GENERATION_NUMBER_COMMIT_STATE_VISITED = 3
};
static int compute_generation_numbers(git_vector *commits)