diff options
Diffstat (limited to 'src/backend/storage/file/fd.c')
-rw-r--r-- | src/backend/storage/file/fd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index 420606e6892..ad70a865373 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); } |