diff options
author | Vicent Martà <tanoku@gmail.com> | 2012-05-18 00:42:24 +0200 |
---|---|---|
committer | Vicent Martà <tanoku@gmail.com> | 2012-05-18 01:26:23 +0200 |
commit | 2e2e97858de18abd43f7e59fcc6151510c6d3272 (patch) | |
tree | 1a6d69f8bb3de8ce3aab66602cf15f8f44c72287 /src/branch.c | |
parent | 4fbd1c007e6c72b32c0dd2a29036a5670f85120a (diff) | |
download | libgit2-2e2e97858de18abd43f7e59fcc6151510c6d3272.tar.gz |
Properly tag all `enums` with a `_t`
Diffstat (limited to 'src/branch.c')
-rw-r--r-- | src/branch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/branch.c b/src/branch.c index 6d5880cb2..9698bbf56 100644 --- a/src/branch.c +++ b/src/branch.c @@ -105,7 +105,7 @@ cleanup: return error; } -int git_branch_delete(git_repository *repo, const char *branch_name, git_branch_type branch_type) +int git_branch_delete(git_repository *repo, const char *branch_name, git_branch_t branch_type) { git_reference *branch = NULL; git_reference *head = NULL; |