diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-08-27 14:33:44 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-08-27 14:33:44 -0700 |
commit | 1392c5d28935a3aa25367df52adf4ca1e3c5724e (patch) | |
tree | 66e223356cf99175860a040dc2bd43ede0d72780 | |
parent | Merge branch 'jk/use-compat-util-in-test-tool' (diff) | |
parent | commit: use timestamp_t for author_date_slab (diff) | |
download | tgif-1392c5d28935a3aa25367df52adf4ca1e3c5724e.tar.xz |
Merge branch 'js/larger-timestamps'
Portability fix.
* js/larger-timestamps:
commit: use timestamp_t for author_date_slab
-rw-r--r-- | commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -656,7 +656,7 @@ struct commit *pop_commit(struct commit_list **stack) define_commit_slab(indegree_slab, int); /* record author-date for each commit object */ -define_commit_slab(author_date_slab, unsigned long); +define_commit_slab(author_date_slab, timestamp_t); static void record_author_date(struct author_date_slab *author_date, struct commit *commit) |