summaryrefslogtreecommitdiff
path: root/src/refdb.h
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-04-21 12:52:17 -0700
committerRussell Belfer <rb@github.com>2013-04-21 12:52:17 -0700
commit21ca045100337bcb2905a20a72d42721d18871f9 (patch)
tree1db8654b2f7e2dd961d2f7fb3c9ea98c3d57cb61 /src/refdb.h
parent4dcd87801972e1b880afa9cd0998842bae7af5b5 (diff)
downloadlibgit2-21ca045100337bcb2905a20a72d42721d18871f9.tar.gz
Move git_reference__alloc to include/git2/sys
Create a new include/git2/sys/refs.h and move the reference alloc functions there. Also fix some documentation issues and some minor code cleanups.
Diffstat (limited to 'src/refdb.h')
-rw-r--r--src/refdb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/refdb.h b/src/refdb.h
index 0969711b9..047113ac8 100644
--- a/src/refdb.h
+++ b/src/refdb.h
@@ -41,6 +41,6 @@ int git_refdb_foreach_glob(
int git_refdb_write(git_refdb *refdb, const git_reference *ref);
-int git_refdb_delete(struct git_refdb *refdb, const git_reference *ref);
+int git_refdb_delete(git_refdb *refdb, const git_reference *ref);
#endif