summaryrefslogtreecommitdiff
path: root/src/branch.c
diff options
context:
space:
mode:
authorVicent Martí <tanoku@gmail.com>2012-05-18 00:42:24 +0200
committerVicent Martí <tanoku@gmail.com>2012-05-18 01:26:23 +0200
commit2e2e97858de18abd43f7e59fcc6151510c6d3272 (patch)
tree1a6d69f8bb3de8ce3aab66602cf15f8f44c72287 /src/branch.c
parent4fbd1c007e6c72b32c0dd2a29036a5670f85120a (diff)
downloadlibgit2-2e2e97858de18abd43f7e59fcc6151510c6d3272.tar.gz
Properly tag all `enums` with a `_t`
Diffstat (limited to 'src/branch.c')
-rw-r--r--src/branch.c2
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;