diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-07-18 17:42:01 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-07-18 17:42:01 +0000 |
commit | fcd1b0d89129aa3788bad80fc02eadd21100fea5 (patch) | |
tree | 201bca23e902a5385f3685228bb7609ca481239e /src/bin/psql/command.c | |
parent | 84e60427259bed6357a6d4559eabeaae11e29a9f (diff) |
Mark a few functions as static or NOT_USED.
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index a9d8a07f835..971ad0c8161 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2006, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.170 2006/06/11 23:06:00 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.171 2006/07/18 17:42:01 momjian Exp $ */ #include "postgres_fe.h" #include "command.h" @@ -55,6 +55,8 @@ static backslashResult exec_command(const char *cmd, static bool do_edit(const char *filename_arg, PQExpBuffer query_buf); static bool do_connect(char *dbname, char *user, char *host, char *port); static bool do_shell(const char *command); +static void SyncVerbosityVariable(void); + /*---------- @@ -1175,7 +1177,7 @@ UnsyncVariables(void) /* * Update connection state from VERBOSITY variable */ -void +static void SyncVerbosityVariable(void) { switch (SwitchVariable(pset.vars, "VERBOSITY", |