bisect.c: mark file-local function static
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
c0eb604330
commit
ebdc302e3e
2
bisect.c
2
bisect.c
@ -593,7 +593,7 @@ struct commit_list *filter_skipped(struct commit_list *list,
|
|||||||
* is increased by one between each call, but that should not matter
|
* is increased by one between each call, but that should not matter
|
||||||
* for this application.
|
* for this application.
|
||||||
*/
|
*/
|
||||||
int get_prn(int count) {
|
static int get_prn(int count) {
|
||||||
count = count * 1103515245 + 12345;
|
count = count * 1103515245 + 12345;
|
||||||
return ((unsigned)(count/65536) % PRN_MODULO);
|
return ((unsigned)(count/65536) % PRN_MODULO);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user