diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-05-20 14:39:43 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-20 14:39:43 +0900 |
commit | 5589e87fd8d2a74201157dad34d66fdcf7ce41a3 (patch) | |
tree | 3831cfceba7d29b56b56f5c135bfb7d2f5b263ed /builtin/name-rev.c | |
parent | archive-tar: fix a sparse 'constant too large' warning (diff) | |
download | tgif-5589e87fd8d2a74201157dad34d66fdcf7ce41a3.tar.xz |
name-rev: change a "long" variable to timestamp_t
Earlier dddbad72 ("timestamp_t: a new data type for timestamps",
2017-04-26) updated all in-core variables, fields and function
return values that are used to store "seconds since epoch" to a new
type timestamp_t. Unfortunately one variable "cutoff", which is
used to keep track of the oldest timestamp of commit we saw on the
command line, was "long" and left behind.
Update it to timestamp_t as well.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/name-rev.c')
-rw-r--r-- | builtin/name-rev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/name-rev.c b/builtin/name-rev.c index 4437475017..1f6fcae121 100644 --- a/builtin/name-rev.c +++ b/builtin/name-rev.c @@ -15,7 +15,7 @@ typedef struct rev_name { int distance; } rev_name; -static long cutoff = LONG_MAX; +static timestamp_t cutoff = TIME_MAX; /* How many generations are maximally preferred over _one_ merge traversal? */ #define MERGE_TRAVERSAL_WEIGHT 65535 |