summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c0eb604)
raw | patch | inline | side by side (parent: c0eb604)
author | Junio C Hamano <gitster@pobox.com> | |
Tue, 12 Jan 2010 05:20:55 +0000 (21:20 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 12 Jan 2010 07:16:16 +0000 (23:16 -0800) |
Signed-off-by: Junio C Hamano <gitster@pobox.com>
bisect.c | patch | blob | history |
diff --git a/bisect.c b/bisect.c
index f1a1f84aa04102378ffe37b8e5b617a6fffeb2fa..5c03398841e135a8f5941f89a43e0b02f7b02d57 100644 (file)
--- a/bisect.c
+++ b/bisect.c
* is increased by one between each call, but that should not matter
* for this application.
*/
-int get_prn(int count) {
+static int get_prn(int count) {
count = count * 1103515245 + 12345;
return ((unsigned)(count/65536) % PRN_MODULO);
}