From: Marc G. Fournier Date: Sat, 21 Sep 1996 08:19:32 +0000 (+0000) Subject: More declaration mis-match fixes... X-Git-Tag: PG95-1_08~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2857a3899ed89cc56d5cdc859fdaf2cdbbc84df8;p=postgresql More declaration mis-match fixes... --- diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index c597717845..0e8b369459 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -7,7 +7,7 @@ * * * 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* -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; char *tmp;