summaryrefslogtreecommitdiff
path: root/include/git2/blob.h
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2014-01-28 11:44:17 -0800
committerRussell Belfer <rb@github.com>2014-01-30 09:59:59 -0800
commit5572d2b8a1668f3c2f35ec91d3f864f28f8ef987 (patch)
tree1239430e3a2674d91e7a685f2ff338580afa7fb0 /include/git2/blob.h
parent0316d80ac0d9cde335467576ad61005963015cfc (diff)
downloadlibgit2-5572d2b8a1668f3c2f35ec91d3f864f28f8ef987.tar.gz
Some missing oid to id renames
Diffstat (limited to 'include/git2/blob.h')
-rw-r--r--include/git2/blob.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/git2/blob.h b/include/git2/blob.h
index 6ba5e9f9c..ac4d84392 100644
--- a/include/git2/blob.h
+++ b/include/git2/blob.h
@@ -196,13 +196,14 @@ GIT_EXTERN(int) git_blob_create_fromchunks(
/**
* Write an in-memory buffer to the ODB as a blob
*
- * @param oid return the oid of the written blob
+ * @param id return the id of the written blob
* @param repo repository where to blob will be written
* @param buffer data to be written into the blob
* @param len length of the data
* @return 0 or an error code
*/
-GIT_EXTERN(int) git_blob_create_frombuffer(git_oid *oid, git_repository *repo, const void *buffer, size_t len);
+GIT_EXTERN(int) git_blob_create_frombuffer(
+ git_oid *id, git_repository *repo, const void *buffer, size_t len);
/**
* Determine if the blob content is most certainly binary or not.