From a1cc307285cb3eff7dfe4b7eadf88247a3d3477e Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Sun, 27 Jun 2021 10:31:42 -0400 Subject: Changed `date` from `int` to `time_t` in `comment`. --- git.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git.h') diff --git a/git.h b/git.h index 9bbe0e7..252099c 100644 --- a/git.h +++ b/git.h @@ -24,7 +24,7 @@ struct file { struct comment { char *author; /* Author of comment. */ char *desc; /* Description/Contents of comment. */ - int date; /* Date of creation. */ + time_t date; /* Date of creation. */ }; struct git_branch { -- cgit v1.2.3-13-gbd6f