summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJosh Triplett <josh@joshtriplett.org>2021-11-08 17:33:35 +0100
committerGitHub <noreply@github.com>2021-11-08 17:33:35 +0100
commitf45ff6c92d8d27ff0c3eb007267eadb4aeeaf16f (patch)
tree4e9151a10c52cdd1d80807ad3175ec11368613c5 /include
parent94cb060c37269485470fb11b7b7207ccf4f9b784 (diff)
downloadlibgit2-f45ff6c92d8d27ff0c3eb007267eadb4aeeaf16f.tar.gz
Omit trailing comma on enum
To accommodate less capable compilers. Co-authored-by: Peter Pettersson <85582231+boretrk@users.noreply.github.com>
Diffstat (limited to 'include')
-rw-r--r--include/git2/odb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/odb.h b/include/git2/odb.h
index 6c86cd625..0691aa4d0 100644
--- a/include/git2/odb.h
+++ b/include/git2/odb.h
@@ -30,7 +30,7 @@ typedef enum {
* exist. When using this flag, you may wish to manually call
* `git_odb_refresh` before processing a batch of objects.
*/
- GIT_ODB_LOOKUP_NO_REFRESH = (1 << 0),
+ GIT_ODB_LOOKUP_NO_REFRESH = (1 << 0)
} git_odb_lookup_flags_t;
/**