diff options
author | nulltoken <emeric.fermas@gmail.com> | 2011-03-20 18:36:25 +0100 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-03-23 00:07:58 +0200 |
commit | 56d8ca266c92e51a1b38ac68b7aa6a24193f5812 (patch) | |
tree | 83e188bcb8d157cd10774ecaabe0a4a42561f5b6 /tests/t04-commit.c | |
parent | fe1920206b7fb780486dcef14d0d6f01835b430d (diff) | |
download | libgit2-56d8ca266c92e51a1b38ac68b7aa6a24193f5812.tar.gz |
Switch from time_t to git_time_t
git_time_t is defined as a signed 64 integer. This allows a true predictable multiplatform behavior.
Diffstat (limited to 'tests/t04-commit.c')
-rw-r--r-- | tests/t04-commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/t04-commit.c b/tests/t04-commit.c index 1140d3319..e92842435 100644 --- a/tests/t04-commit.c +++ b/tests/t04-commit.c @@ -366,7 +366,7 @@ BEGIN_TEST(details0, "query the details on a parsed commit") const git_signature *author, *committer; const char *message, *message_short; - time_t commit_time; + git_time_t commit_time; unsigned int parents, p; git_commit *parent; |