Make enum in includes C90 compliant by removing trailing comma.

This commit is contained in:
Peter Pettersson
2021-10-03 00:12:52 +02:00
parent 5221e18548
commit 38c3449822
38 changed files with 72 additions and 72 deletions

View File

@@ -147,7 +147,7 @@ typedef enum {
* If set, libgit2 was built with support for sub-second resolution in file
* modification times.
*/
GIT_FEATURE_NSEC = (1 << 3),
GIT_FEATURE_NSEC = (1 << 3)
} git_feature_t;
/**