mirror of https://github.com/postgres/postgres
More declaration mis-match fixes...
This commit is contained in:
parent
52f9fcd737
commit
2857a3899e
|
@ -7,7 +7,7 @@
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.4.2.3 1996/08/19 19:28:17 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.4.2.4 1996/09/21 08:19:32 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
@ -64,7 +64,11 @@ static void closePGconn(PGconn *conn);
|
||||||
* ----------------
|
* ----------------
|
||||||
*/
|
*/
|
||||||
PGconn*
|
PGconn*
|
||||||
PQsetdb(char *pghost, char* pgport, char* pgoptions, char* pgtty, char* dbName)
|
PQsetdb(const char *pghost,
|
||||||
|
const char *pgport,
|
||||||
|
const char *pgoptions,
|
||||||
|
const char *pgtty,
|
||||||
|
const char *dbName)
|
||||||
{
|
{
|
||||||
PGconn *conn;
|
PGconn *conn;
|
||||||
char *tmp;
|
char *tmp;
|
||||||
|
|
Loading…
Reference in New Issue