Make enum in src,tests and examples C90 compliant by removing trailing comma.

This commit is contained in:
Peter Pettersson
2021-10-22 22:51:59 +02:00
parent 43d9f0e3fe
commit 7dcc29fc46
37 changed files with 46 additions and 46 deletions

View File

@@ -28,7 +28,7 @@
enum index_mode {
INDEX_NONE,
INDEX_ADD,
INDEX_ADD
};
struct index_options {

View File

@@ -27,7 +27,7 @@ enum subcmd {
subcmd_remove,
subcmd_rename,
subcmd_seturl,
subcmd_show,
subcmd_show
};
struct remote_opts {

View File

@@ -38,7 +38,7 @@ enum {
FORMAT_DEFAULT = 0,
FORMAT_LONG = 1,
FORMAT_SHORT = 2,
FORMAT_PORCELAIN = 3,
FORMAT_PORCELAIN = 3
};
#define MAX_PATHSPEC 8