diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-05-09 20:51:10 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-05-09 20:51:10 +0000 |
commit | c66890a89a45a7af57d1bff364e67e25c6ca3b1a (patch) | |
tree | 84f7be4c6e5ec2f9a920a7a92e204e5e4c8a902b | |
parent | 1a7705794c13c69f004f36d1a6e1557684f6f8fd (diff) |
(trivfs_S_file_syncfs): Provide new third arg to file_sync.
-rw-r--r-- | libtrivfs/file-syncfs.c | 4 |
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; } |