diff options
author | Vicent Marti <tanoku@gmail.com> | 2010-05-14 18:57:50 +0200 |
---|---|---|
committer | Andreas Ericsson <ae@op5.se> | 2010-06-02 10:32:06 +0200 |
commit | 4caa8962a6af9fac72ab81afb03779bc3acff910 (patch) | |
tree | c3ffa781d527d08ddd3cf626ade4685fadce498c /src/commit.h | |
parent | 417f0abc9b41f01520df863567b25efd03bd281c (diff) | |
download | libgit2-4caa8962a6af9fac72ab81afb03779bc3acff910.tar.gz |
Fixed indentation issues in commit.c
Signed-off-by: Vicent Marti <tanoku@gmail.com>
Signed-off-by: Andreas Ericsson <ae@op5.se>
Diffstat (limited to 'src/commit.h')
-rw-r--r-- | src/commit.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/commit.h b/src/commit.h index 1cdb9a4f4..fe4db4d4c 100644 --- a/src/commit.h +++ b/src/commit.h @@ -10,11 +10,11 @@ #define GIT_COMMIT_DELAY (1 << 2) struct git_commit { - git_oid id; - time_t commit_time; + git_oid id; + time_t commit_time; git_revpool *pool; - unsigned parsed:1, - flags:26; + unsigned parsed:1, + flags:26; }; int git_commit__parse_oid(git_oid *oid, char **buffer_out, const char *buffer_end, const char *header); |