diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2018-12-09 11:25:21 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-12-10 07:41:09 +0100 |
commit | 3b3357626edc841a51d8885ddf6986bab5b6f778 (patch) | |
tree | c28a424e00c4fc8ca7656be02e2951396d91f9ad /bisect.c | |
parent | Git 2.20 (diff) | |
download | git-3b3357626edc841a51d8885ddf6986bab5b6f778.tar.xz git-3b3357626edc841a51d8885ddf6986bab5b6f778.zip |
style: the opening '{' of a function is in a separate line
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'bisect.c')
-rw-r--r-- | bisect.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -558,7 +558,8 @@ struct commit_list *filter_skipped(struct commit_list *list, * is increased by one between each call, but that should not matter * for this application. */ -static unsigned get_prn(unsigned count) { +static unsigned get_prn(unsigned count) +{ count = count * 1103515245 + 12345; return (count/65536) % PRN_MODULO; } |