summaryrefslogtreecommitdiff
path: root/libtrivfs
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-05-09 20:53:47 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-05-09 20:53:47 +0000
commit4227fbe577a8a67c1aa47c6b4a89bc3b6619e453 (patch)
tree5a2c4cc471741edc526b2921cdcf5d517983c753 /libtrivfs
parent7c0fe68a9fdc824ea5204941743d4ebf0912abdf (diff)
(trivfs_S_fsys_syncfs): Provide new third arg to file_sync.
Diffstat (limited to 'libtrivfs')
-rw-r--r--libtrivfs/fsys-syncfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtrivfs/fsys-syncfs.c b/libtrivfs/fsys-syncfs.c
index 64ed8fd5..6059adfd 100644
--- a/libtrivfs/fsys-syncfs.c
+++ b/libtrivfs/fsys-syncfs.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1994 Free Software Foundation, Inc.
+ Copyright (C) 1994, 1996 Free Software Foundation, Inc.
Written by Michael I. Bushnell.
This file is part of the GNU Hurd.
@@ -28,5 +28,5 @@ trivfs_S_fsys_syncfs (struct trivfs_control *cntl,
int wait,
int dochildren)
{
- return cntl ? file_sync (cntl->underlying, wait) : EOPNOTSUPP;
+ return cntl ? file_sync (cntl->underlying, wait, 0) : EOPNOTSUPP;
}