Commit be19feb1 authored by Marc G. Fournier's avatar Marc G. Fournier

The decode function in psql.c doesn't return anything, so its

declaration is incorrect.

-Kurt
parent c4ea55d2
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * 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) ...@@ -557,7 +557,7 @@ toggle(PsqlSettings *settings, bool *sw, char *msg)
return *sw; return *sw;
} }
char * void
decode(char *s) decode(char *s)
{ {
char *p, *d; char *p, *d;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment