diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2014-05-17 17:57:53 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2014-05-17 17:57:53 -0400 |
commit | c1907f0cc49e38df9853b7547c9afce5204e4784 (patch) | |
tree | 1584381688bffeaebd2ff25379c63846d79e857d /src/backend/utils/misc/guc.c | |
parent | 6c42b2b10af3f717030966b9f05867f3e065becc (diff) | |
download | postgresql-c1907f0cc49e38df9853b7547c9afce5204e4784.tar.gz postgresql-c1907f0cc49e38df9853b7547c9afce5204e4784.zip |
Fix a bunch of functions that were declared static then defined not-static.
Per testing with a compiler that whines about this.
Diffstat (limited to 'src/backend/utils/misc/guc.c')
-rw-r--r-- | src/backend/utils/misc/guc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index fdd5b638cd6..1d094f00c61 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -5340,7 +5340,7 @@ config_enum_get_options(struct config_enum * record, const char *prefix, * 1: the value is valid * 0: the name or value is invalid */ -bool +static bool validate_conf_option(struct config_generic * record, const char *name, const char *value, GucSource source, int elevel, bool freemem, void *newval, void **newextra) |