Commit a57a1e61 authored by Magnus Hagander's avatar Magnus Hagander

Make parameters in implementation have same const:ness as the ones in

the prototype. Silences msvc build warning.
parent e863951a
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-lobj.c,v 1.65 2008/03/19 00:39:33 ishii Exp $ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-lobj.c,v 1.66 2008/04/10 15:20:52 mha Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -505,7 +505,7 @@ lo_import_with_oid(PGconn *conn, const char *filename, Oid lobjId) ...@@ -505,7 +505,7 @@ lo_import_with_oid(PGconn *conn, const char *filename, Oid lobjId)
} }
static Oid static Oid
lo_import_internal(PGconn *conn, const char *filename, Oid oid) lo_import_internal(PGconn *conn, const char *filename, const Oid oid)
{ {
int fd; int fd;
int nbytes, int nbytes,
......
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