From 9b3577eda0e6bb13d18a304763b91665575adfd3 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Fri, 28 May 2010 00:23:43 +0200 Subject: Fixed brace placement and converted spaces to tabs. Signed-off-by: Vicent Marti Signed-off-by: Andreas Ericsson --- src/commit.h | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'src/commit.h') diff --git a/src/commit.h b/src/commit.h index e8d0c5322..c62b80f26 100644 --- a/src/commit.h +++ b/src/commit.h @@ -7,33 +7,33 @@ #include struct git_commit_node { - struct git_commit *commit; + struct git_commit *commit; - struct git_commit_node *next; - struct git_commit_node *prev; + struct git_commit_node *next; + struct git_commit_node *prev; }; struct git_commit_list { - struct git_commit_node *head; - struct git_commit_node *tail; - size_t size; + struct git_commit_node *head; + struct git_commit_node *tail; + size_t size; }; typedef struct git_commit_list git_commit_list; typedef struct git_commit_node git_commit_node; struct git_commit { - git_revpool_object object; + git_revpool_object object; - time_t commit_time; - git_commit_list parents; + time_t commit_time; + git_commit_list parents; - unsigned short in_degree; - unsigned parsed:1, - seen:1, - uninteresting:1, - topo_delay:1, - flags:26; + unsigned short in_degree; + unsigned parsed:1, + seen:1, + uninteresting:1, + topo_delay:1, + flags:26; }; int git_commit__parse_oid(git_oid *oid, char **buffer_out, const char *buffer_end, const char *header); -- cgit v1.2.1