Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-08-28 00:33:44 +0300
committerJunio C Hamano <gitster@pobox.com>2018-08-28 00:33:44 +0300
commit1392c5d28935a3aa25367df52adf4ca1e3c5724e (patch)
tree66e223356cf99175860a040dc2bd43ede0d72780 /commit.c
parent6d9276ea13f262f017af4a52fadac7ab7d0ea523 (diff)
parent1820703045f8974bc5320d08a3611f4e29c83bf9 (diff)
Merge branch 'js/larger-timestamps'
Portability fix. * js/larger-timestamps: commit: use timestamp_t for author_date_slab
Diffstat (limited to 'commit.c')
-rw-r--r--commit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit.c b/commit.c
index 30d1af2b20..1a6e632185 100644
--- a/commit.c
+++ b/commit.c
@@ -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)