diff options
author | Russell Belfer <rb@github.com> | 2013-04-16 11:51:02 -0700 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2013-04-22 16:52:06 +0200 |
commit | 3f27127d15dfe69943d3c9ddf96d09a2300de3a9 (patch) | |
tree | 77970a2d28265f4d4319f6613aff4a6501d57c12 /src/commit.h | |
parent | 786062639f05e361da977f3f1f6286141fa12fca (diff) | |
download | libgit2-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/commit.h')
-rw-r--r-- | src/commit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commit.h b/src/commit.h index 0c2c3ab5d..d0981b125 100644 --- a/src/commit.h +++ b/src/commit.h @@ -28,6 +28,6 @@ struct git_commit { }; void git_commit__free(void *commit); -int git_commit__parse(void *commit, const char *buf, const char *bufend); +int git_commit__parse(void *commit, git_odb_object *obj); #endif |