Skip to content

Commit 2857a38

Browse files
committed
More declaration mis-match fixes...
1 parent 52f9fcd commit 2857a38

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/interfaces/libpq/fe-connect.c

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.4.2.3 1996/08/19 19:28:17 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.4.2.4 1996/09/21 08:19:32 scrappy Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -64,7 +64,11 @@ static void closePGconn(PGconn *conn);
6464
* ----------------
6565
*/
6666
PGconn*
67-
PQsetdb(char *pghost, char* pgport, char* pgoptions, char* pgtty, char* dbName)
67+
PQsetdb(const char *pghost,
68+
const char *pgport,
69+
const char *pgoptions,
70+
const char *pgtty,
71+
const char *dbName)
6872
{
6973
PGconn *conn;
7074
char *tmp;

0 commit comments

Comments
 (0)