summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-05-09 20:51:10 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-05-09 20:51:10 +0000
commitc66890a89a45a7af57d1bff364e67e25c6ca3b1a (patch)
tree84f7be4c6e5ec2f9a920a7a92e204e5e4c8a902b
parent1a7705794c13c69f004f36d1a6e1557684f6f8fd (diff)
(trivfs_S_file_syncfs): Provide new third arg to file_sync.
-rw-r--r--libtrivfs/file-syncfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtrivfs/file-syncfs.c b/libtrivfs/file-syncfs.c
index bd0c5421..1f74e395 100644
--- a/libtrivfs/file-syncfs.c
+++ b/libtrivfs/file-syncfs.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1994 Free Software Foundation
+ Copyright (C) 1994, 1996 Free Software Foundation
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
@@ -24,5 +24,5 @@ trivfs_S_file_syncfs (struct trivfs_protid *cred,
int wait,
int dochildren)
{
- return cred ? file_sync (cred->realnode, wait) : EOPNOTSUPP;
+ return cred ? file_sync (cred->realnode, wait, 0) : EOPNOTSUPP;
}