From ea5b5357cdc79c7742c035032f5500e4a97a6d55 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 12 Aug 1997 22:55:25 +0000 Subject: Remove more (void) and fix -Wall warnings. --- src/test/examples/testlo.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/test/examples/testlo.c') diff --git a/src/test/examples/testlo.c b/src/test/examples/testlo.c index cd69fbd75e..c9324f8942 100644 --- a/src/test/examples/testlo.c +++ b/src/test/examples/testlo.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/test/examples/testlo.c,v 1.2 1997/07/10 01:15:11 momjian Exp $ + * $Header: /cvsroot/pgsql/src/test/examples/testlo.c,v 1.3 1997/08/12 22:55:19 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -63,8 +63,8 @@ Oid importFile(PGconn *conn, char *filename) } } - (void) close(fd); - (void) lo_close(conn, lobj_fd); + close(fd); + lo_close(conn, lobj_fd); return lobjId; } @@ -168,8 +168,8 @@ void exportFile(PGconn *conn, Oid lobjId, char *filename) } } - (void) lo_close(conn, lobj_fd); - (void) close(fd); + lo_close(conn, lobj_fd); + close(fd); return; } -- cgit v1.2.1