diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-07-29 20:58:42 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-07-29 20:58:42 +0000 |
commit | be19feb14a0491915aee45163926c5475d17bff8 (patch) | |
tree | 6a47621e620a185bc88dc595e6ca3cd371be2758 /src | |
parent | c4ea55d2c94d6d1579acd5b7eb05d6bc32166453 (diff) | |
download | postgresql-be19feb14a0491915aee45163926c5475d17bff8.tar.gz postgresql-be19feb14a0491915aee45163926c5475d17bff8.zip |
The decode function in psql.c doesn't return anything, so its
declaration is incorrect.
-Kurt
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/psql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index 661b46523f6..8202044045c 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.13 1996/07/28 07:08:13 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.14 1996/07/29 20:58:42 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -557,7 +557,7 @@ toggle(PsqlSettings *settings, bool *sw, char *msg) return *sw; } -char * +void decode(char *s) { char *p, *d; |