diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-05-09 20:53:47 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-05-09 20:53:47 +0000 |
commit | 4227fbe577a8a67c1aa47c6b4a89bc3b6619e453 (patch) | |
tree | 5a2c4cc471741edc526b2921cdcf5d517983c753 | |
parent | 7c0fe68a9fdc824ea5204941743d4ebf0912abdf (diff) |
(trivfs_S_fsys_syncfs): Provide new third arg to file_sync.
-rw-r--r-- | libtrivfs/fsys-syncfs.c | 4 |
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; } |