From 5a5b917184b630529635db2e037d298ad90c355d Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 2 Apr 2016 13:59:11 -0400 Subject: [PATCH] Add missing "static". Per buildfarm member pademelon. --- contrib/bloom/blutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/bloom/blutils.c b/contrib/bloom/blutils.c index f301f415ab..92ab85811b 100644 --- a/contrib/bloom/blutils.c +++ b/contrib/bloom/blutils.c @@ -195,7 +195,7 @@ myRand() return (x - 1); } -void +static void mySrand(uint32 seed) { next = seed;