mirror of
https://github.com/git/git.git
synced 2025-09-10 22:44:50 +02:00
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>
This commit is contained in:
committed by
Junio C Hamano
parent
5d826e9729
commit
3b3357626e
3
bisect.c
3
bisect.c
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user