diff options
author | Tom Lane | 2016-04-02 17:59:11 +0000 |
---|---|---|
committer | Tom Lane | 2016-04-02 17:59:11 +0000 |
commit | 5a5b917184b630529635db2e037d298ad90c355d (patch) | |
tree | 0c36b82cdc4092cd8539a7af2c296984cca914c3 /contrib/bloom/blutils.c | |
parent | a1953f3a60cc7d1b8516d0b2c7e82ae8e9242de3 (diff) |
Add missing "static".
Per buildfarm member pademelon.
Diffstat (limited to 'contrib/bloom/blutils.c')
-rw-r--r-- | contrib/bloom/blutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |