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 /tests/t0204-readpack.c | |
| 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 'tests/t0204-readpack.c')
| -rw-r--r-- | tests/t0204-readpack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/t0204-readpack.c b/tests/t0204-readpack.c index 49ae9af1b..8310ea3d9 100644 --- a/tests/t0204-readpack.c +++ b/tests/t0204-readpack.c @@ -141,7 +141,7 @@ BEGIN_TEST(readpacked_test) for (i = 0; i < ARRAY_SIZE(packed_objects); ++i) { git_oid id; - git_obj obj; + git_rawobj obj; must_pass(git_oid_mkstr(&id, packed_objects[i])); must_be_true(git_odb_exists(db, &id) == 1); |
