From: Junio C Hamano Date: Tue, 12 Jan 2010 05:20:55 +0000 (-0800) Subject: bisect.c: mark file-local function static X-Git-Tag: v1.7.0-rc0~77^2~17 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ebdc302e3e930ec7f3f6e818ecc815a7a5f01781;p=git.git bisect.c: mark file-local function static Signed-off-by: Junio C Hamano --- diff --git a/bisect.c b/bisect.c index f1a1f84aa..5c0339884 100644 --- a/bisect.c +++ b/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 * for this application. */ -int get_prn(int count) { +static int get_prn(int count) { count = count * 1103515245 + 12345; return ((unsigned)(count/65536) % PRN_MODULO); }