diff options
| author | Peter Pettersson <boretrk@hotmail.com> | 2021-10-22 22:51:59 +0200 |
|---|---|---|
| committer | Peter Pettersson <boretrk@hotmail.com> | 2021-11-15 16:45:40 +0100 |
| commit | 7dcc29fc4652caeb09de39827cfd1a80726b5995 (patch) | |
| tree | 74992ead7b05460f0d6a9fcc894f3dc9a3cbaea7 /src/annotated_commit.h | |
| parent | 43d9f0e3fe96823d88475fd9edae07732c84dbc8 (diff) | |
| download | libgit2-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.h | 2 |
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; /** |
