Mark some variables as static.

This commit is contained in:
Ian Barwick
2016-07-26 11:40:26 +09:00
parent cbc2c7b3e6
commit 36eb26f86d

View File

@@ -140,11 +140,11 @@ static bool config_file_required = true;
t_runtime_options runtime_options = T_RUNTIME_OPTIONS_INITIALIZER; t_runtime_options runtime_options = T_RUNTIME_OPTIONS_INITIALIZER;
t_configuration_options options = T_CONFIGURATION_OPTIONS_INITIALIZER; t_configuration_options options = T_CONFIGURATION_OPTIONS_INITIALIZER;
bool wal_keep_segments_used = false; static bool wal_keep_segments_used = false;
bool conninfo_provided = false; static bool conninfo_provided = false;
bool connection_param_provided = false; static bool connection_param_provided = false;
bool host_param_provided = false; static bool host_param_provided = false;
bool pg_rewind_supplied = false; static bool pg_rewind_supplied = false;
static char *server_mode = NULL; static char *server_mode = NULL;
static char *server_cmd = NULL; static char *server_cmd = NULL;