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:
Nguyễn Thái Ngọc Duy
2018-12-09 11:25:21 +01:00
committed by Junio C Hamano
parent 5d826e9729
commit 3b3357626e
15 changed files with 35 additions and 17 deletions

View File

@@ -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;
}