diff options
| author | Vicent Marti <tanoku@gmail.com> | 2010-09-19 03:21:06 +0300 |
|---|---|---|
| committer | Vicent Marti <tanoku@gmail.com> | 2010-09-19 03:21:06 +0300 |
| commit | f49a2e4981d747f96246bc0c8e75e618419f4eee (patch) | |
| tree | cae3615bb5d0f94a4ac7dadbb53fbe20f4a52c8f /src/git/common.h | |
| parent | a7a7ddbe0f097923feb9ed31502857891e02824f (diff) | |
| download | libgit2-f49a2e4981d747f96246bc0c8e75e618419f4eee.tar.gz | |
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/git/common.h')
| -rw-r--r-- | src/git/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/git/common.h b/src/git/common.h index b43f4ee01..faf9702a7 100644 --- a/src/git/common.h +++ b/src/git/common.h @@ -92,7 +92,7 @@ GIT_BEGIN_DECL typedef struct git_repository git_repository; /* Representation of a generic object in a repository */ -typedef struct git_repository_object git_repository_object; +typedef struct git_object git_object; /** Parsed representation of a person */ typedef struct git_person { |
