From f49a2e4981d747f96246bc0c8e75e618419f4eee Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Sun, 19 Sep 2010 03:21:06 +0300 Subject: 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 --- src/commit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/commit.h') diff --git a/src/commit.h b/src/commit.h index ae4f06d65..4e883c074 100644 --- a/src/commit.h +++ b/src/commit.h @@ -22,7 +22,7 @@ typedef struct git_commit_parents { } git_commit_parents; struct git_commit { - git_repository_object object; + git_object object; time_t commit_time; git_commit_parents *parents; -- cgit v1.2.1