mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
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.
This commit is contained in:
2
src/backend/utils/cache/relfilenodemap.c
vendored
2
src/backend/utils/cache/relfilenodemap.c
vendored
@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user