diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2013-12-16 11:27:30 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2013-12-16 11:41:17 +0200 |
commit | 30b96549ab41ce23399256d4ea9723a05c139558 (patch) | |
tree | f54f7f58885fe494a88dacff074a7f847f9a7286 /src/backend/utils/cache | |
parent | 1f0626ee40f2decd93ca96c6f9e9a9b5edff57ba (diff) | |
download | postgresql-30b96549ab41ce23399256d4ea9723a05c139558.tar.gz postgresql-30b96549ab41ce23399256d4ea9723a05c139558.zip |
Mark variables 'static' where possible. Move GinFuzzySearchLimit to ginget.c
Per "clang -Wmissing-variable-declarations" output, posted by Andres Freund.
I didn't silence all those warnings, though, only the most obvious cases.
Diffstat (limited to 'src/backend/utils/cache')
-rw-r--r-- | src/backend/utils/cache/relfilenodemap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/cache/relfilenodemap.c b/src/backend/utils/cache/relfilenodemap.c index 1469bfaba2f..6806fbb073b 100644 --- a/src/backend/utils/cache/relfilenodemap.c +++ b/src/backend/utils/cache/relfilenodemap.c @@ -33,7 +33,7 @@ static HTAB *RelfilenodeMapHash = NULL; /* built first time through in InitializeRelfilenodeMap */ -ScanKeyData relfilenode_skey[2]; +static ScanKeyData relfilenode_skey[2]; typedef struct { |