Skip to content

Commit f45ff6c

Browse files
Omit trailing comma on enum
To accommodate less capable compilers. Co-authored-by: Peter Pettersson <85582231+boretrk@users.noreply.github.com>
1 parent 94cb060 commit f45ff6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/git2/odb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ typedef enum {
3030
* exist. When using this flag, you may wish to manually call
3131
* `git_odb_refresh` before processing a batch of objects.
3232
*/
33-
GIT_ODB_LOOKUP_NO_REFRESH = (1 << 0),
33+
GIT_ODB_LOOKUP_NO_REFRESH = (1 << 0)
3434
} git_odb_lookup_flags_t;
3535

3636
/**

0 commit comments

Comments
 (0)