diff options
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); |