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/backend/storage/file/fd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/storage/file/fd.c') diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index 420606e689..ad70a86537 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -6,7 +6,7 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Id: fd.c,v 1.19 1997/07/28 00:54:52 momjian Exp $ + * $Id: fd.c,v 1.20 1997/08/12 22:53:51 momjian Exp $ * * NOTES: * @@ -765,8 +765,8 @@ FileTruncate(File file, int offset) DO_DB(elog(DEBUG, "FileTruncate %d (%s)", file, VfdCache[file].fileName)); - (void) FileSync(file); - (void) FileAccess(file); + FileSync(file); + FileAccess(file); returnCode = ftruncate(VfdCache[file].fd, offset); return(returnCode); } -- cgit v1.2.1