summaryrefslogtreecommitdiff
path: root/git.h
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-06-27 10:31:42 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-06-27 10:31:42 -0400
commita1cc307285cb3eff7dfe4b7eadf88247a3d3477e (patch)
tree83c5357475de834c3731ae515339dd583f951231 /git.h
parent811d5f0d30b75eca08cc10358d7301d0ea5537ec (diff)
Changed `date` from `int` to `time_t` in `comment`.
Diffstat (limited to 'git.h')
-rw-r--r--git.h2
1 files changed, 1 insertions, 1 deletions
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 {