projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c4ea55d
)
The decode function in psql.c doesn't return anything, so its
author
Marc G. Fournier
Mon, 29 Jul 1996 20:58:42 +0000
(20:58 +0000)
committer
Marc G. Fournier
Mon, 29 Jul 1996 20:58:42 +0000
(20:58 +0000)
declaration is incorrect.
-Kurt
src/bin/psql/psql.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/psql/psql.c
b/src/bin/psql/psql.c
index 661b46523f6c58b3ff24fb4fed5c9a76c587e886..8202044045cfc54202a9d0bda4788d17fd579e1e 100644
(file)
--- 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.1
3 1996/07/28 07:08:13
scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.1
4 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;