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/t06-index.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/t06-index.c')
-rw-r--r-- | tests/t06-index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/t06-index.c b/tests/t06-index.c index 19b4da5c2..93ca2c04e 100644 --- a/tests/t06-index.c +++ b/tests/t06-index.c @@ -34,7 +34,7 @@ struct test_entry { unsigned int index; char path[128]; git_off_t file_size; - time_t mtime; + git_time_t mtime; }; struct test_entry TEST_ENTRIES[] = { |