summaryrefslogtreecommitdiff
path: root/src/blob.h
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-04-16 11:51:02 -0700
committerVicent Marti <tanoku@gmail.com>2013-04-22 16:52:06 +0200
commit3f27127d15dfe69943d3c9ddf96d09a2300de3a9 (patch)
tree77970a2d28265f4d4319f6613aff4a6501d57c12 /src/blob.h
parent786062639f05e361da977f3f1f6286141fa12fca (diff)
downloadlibgit2-3f27127d15dfe69943d3c9ddf96d09a2300de3a9.tar.gz
Simplify object table parse functions
This unifies the object parse functions into one signature that takes an odb_object.
Diffstat (limited to 'src/blob.h')
-rw-r--r--src/blob.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blob.h b/src/blob.h
index 4873505fd..22e37cc3a 100644
--- a/src/blob.h
+++ b/src/blob.h
@@ -18,7 +18,7 @@ struct git_blob {
};
void git_blob__free(void *blob);
-int git_blob__from_odb_object(void *blob, git_odb_object *obj);
+int git_blob__parse(void *blob, git_odb_object *obj);
int git_blob__getbuf(git_buf *buffer, git_blob *blob);
#endif