summaryrefslogtreecommitdiff
path: root/include/git2/remote.h
diff options
context:
space:
mode:
authorPeter Pettersson <boretrk@hotmail.com>2021-10-03 00:12:52 +0200
committerPeter Pettersson <boretrk@hotmail.com>2021-11-15 16:45:40 +0100
commit38c3449822162e7b7669c1cc7ca778afccb59406 (patch)
tree7ce432a4a459b0b0ca025945b4aca9f2b54b9caa /include/git2/remote.h
parent5221e1854846ac31dd2ada44fb29dc705104e851 (diff)
downloadlibgit2-38c3449822162e7b7669c1cc7ca778afccb59406.tar.gz
Make enum in includes C90 compliant by removing trailing comma.
Diffstat (limited to 'include/git2/remote.h')
-rw-r--r--include/git2/remote.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/git2/remote.h b/include/git2/remote.h
index 4d57eaaf7..088f528a6 100644
--- a/include/git2/remote.h
+++ b/include/git2/remote.h
@@ -49,7 +49,7 @@ typedef enum {
GIT_REMOTE_CREATE_SKIP_INSTEADOF = (1 << 0),
/** Don't build a fetchspec from the name if none is set */
- GIT_REMOTE_CREATE_SKIP_DEFAULT_FETCHSPEC = (1 << 1),
+ GIT_REMOTE_CREATE_SKIP_DEFAULT_FETCHSPEC = (1 << 1)
} git_remote_create_flags;
/**
@@ -443,7 +443,7 @@ GIT_EXTERN(int) git_remote_list(git_strarray *out, git_repository *repo);
typedef enum git_remote_completion_t {
GIT_REMOTE_COMPLETION_DOWNLOAD,
GIT_REMOTE_COMPLETION_INDEXING,
- GIT_REMOTE_COMPLETION_ERROR,
+ GIT_REMOTE_COMPLETION_ERROR
} git_remote_completion_t;
/** Push network progress notification function */
@@ -665,7 +665,7 @@ typedef enum {
/**
* Force pruning off
*/
- GIT_FETCH_NO_PRUNE,
+ GIT_FETCH_NO_PRUNE
} git_fetch_prune_t;
/**
@@ -690,7 +690,7 @@ typedef enum {
/**
* Ask for the all the tags.
*/
- GIT_REMOTE_DOWNLOAD_TAGS_ALL,
+ GIT_REMOTE_DOWNLOAD_TAGS_ALL
} git_remote_autotag_option_t;
/**