summaryrefslogtreecommitdiff
path: root/src/bin/psql/psql.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>1998-10-26 01:05:07 +0000
committerTom Lane <tgl@sss.pgh.pa.us>1998-10-26 01:05:07 +0000
commit990fa43c23997bde923bf8cf6e79486bbac2de3a (patch)
treecb7e3d1e4fac7494092f06c096aefa6484e81c7a /src/bin/psql/psql.c
parent0bdf46a37f9c04f846bf6351bd6723de28b2d9ce (diff)
downloadpostgresql-990fa43c23997bde923bf8cf6e79486bbac2de3a.tar.gz
Get rid of some minor compiler warnings.
Diffstat (limited to 'src/bin/psql/psql.c')
-rw-r--r--src/bin/psql/psql.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c
index 485ef54ecf..a5d6cfa006 100644
--- a/src/bin/psql/psql.c
+++ b/src/bin/psql/psql.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.162 1998/10/08 00:10:47 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.163 1998/10/26 01:04:37 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -379,7 +379,7 @@ listAllDbs(PsqlSettings *pset)
* List The Database Tables returns 0 if all went well
*
*/
-int
+static int
tableList(PsqlSettings *pset, bool deep_tablelist, char info_type,
bool system_tables)
{
@@ -535,7 +535,7 @@ tableList(PsqlSettings *pset, bool deep_tablelist, char info_type,
* List Tables Grant/Revoke Permissions returns 0 if all went well
*
*/
-int
+static int
rightsList(PsqlSettings *pset)
{
char listbuf[512];
@@ -661,7 +661,7 @@ static void emitNtimes (FILE *fout, const char *str, int N)
*
*
*/
-int
+static int
tableDesc(PsqlSettings *pset, char *table, FILE *fout)
{
char descbuf[512];
@@ -877,7 +877,7 @@ tableDesc(PsqlSettings *pset, char *table, FILE *fout)
*
*
*/
-int
+static int
objectDescription(PsqlSettings *pset, char *object)
{
char descbuf[512];