summaryrefslogtreecommitdiff
path: root/src/annotated_commit.h
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/annotated_commit.h
parent43d9f0e3fe96823d88475fd9edae07732c84dbc8 (diff)
downloadlibgit2-7dcc29fc4652caeb09de39827cfd1a80726b5995.tar.gz
Make enum in src,tests and examples C90 compliant by removing trailing comma.
Diffstat (limited to 'src/annotated_commit.h')
-rw-r--r--src/annotated_commit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/annotated_commit.h b/src/annotated_commit.h
index b390066b2..444a2ed10 100644
--- a/src/annotated_commit.h
+++ b/src/annotated_commit.h
@@ -15,7 +15,7 @@
typedef enum {
GIT_ANNOTATED_COMMIT_REAL = 1,
- GIT_ANNOTATED_COMMIT_VIRTUAL = 2,
+ GIT_ANNOTATED_COMMIT_VIRTUAL = 2
} git_annotated_commit_t;
/**