diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-07-12 15:18:23 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-07-12 15:18:23 -0700 |
commit | f056cde60e7b095edf1530554a8c9528bd8b374b (patch) | |
tree | 1507f5729cc2a2718b59712b0aac3a7350c2144f /builtin/log.c | |
parent | Merge branch 'kn/ref-filter-branch-list' (diff) | |
parent | use DIV_ROUND_UP (diff) | |
download | tgif-f056cde60e7b095edf1530554a8c9528bd8b374b.tar.xz |
Merge branch 'rs/use-div-round-up'
Code cleanup.
* rs/use-div-round-up:
use DIV_ROUND_UP
Diffstat (limited to 'builtin/log.c')
-rw-r--r-- | builtin/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/log.c b/builtin/log.c index 8ca1de9894..c6362cf92e 100644 --- a/builtin/log.c +++ b/builtin/log.c @@ -1308,7 +1308,7 @@ static struct commit *get_base_commit(const char *base_commit, if (rev_nr % 2) rev[i] = rev[2 * i]; - rev_nr = (rev_nr + 1) / 2; + rev_nr = DIV_ROUND_UP(rev_nr, 2); } if (!in_merge_bases(base, rev[0])) |