Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2010-09-19 04:21:06 +0400
committerVicent Marti <tanoku@gmail.com>2010-09-19 04:21:06 +0400
commitf49a2e4981d747f96246bc0c8e75e618419f4eee (patch)
treecae3615bb5d0f94a4ac7dadbb53fbe20f4a52c8f /src/delta-apply.h
parenta7a7ddbe0f097923feb9ed31502857891e02824f (diff)
Give object structures more descriptive names
The 'git_obj' structure is now called 'git_rawobj', since it represents a raw object read from the ODB. The 'git_repository_object' structure is now called 'git_object', since it's the base object class for all objects. Signed-off-by: Vicent Marti <tanoku@gmail.com>
Diffstat (limited to 'src/delta-apply.h')
-rw-r--r--src/delta-apply.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/delta-apply.h b/src/delta-apply.h
index 498bccdfe..642442de0 100644
--- a/src/delta-apply.h
+++ b/src/delta-apply.h
@@ -16,7 +16,7 @@
* - GIT_ERROR if the delta is corrupt or doesn't match the base.
*/
extern int git__delta_apply(
- git_obj *out,
+ git_rawobj *out,
const unsigned char *base,
size_t base_len,
const unsigned char *delta,