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

@@ -49,7 +49,7 @@ typedef enum {
* order; this sorting mode can be combined with
* any of the above.
*/
GIT_SORT_REVERSE = 1 << 2,
GIT_SORT_REVERSE = 1 << 2
} git_sort_t;
/**