diff options
-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; } |