diff options
Diffstat (limited to 'libdiskfs/io-prenotify.c')
-rw-r--r-- | libdiskfs/io-prenotify.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libdiskfs/io-prenotify.c b/libdiskfs/io-prenotify.c index fc6048ec..b3d8413a 100644 --- a/libdiskfs/io-prenotify.c +++ b/libdiskfs/io-prenotify.c @@ -16,6 +16,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "priv.h" +#include "io_S.h" /* Implement io_prenotify as described in <hurd/io.defs>. @@ -61,7 +62,7 @@ diskfs_S_io_prenotify (struct protid *cred, goto out; } - err = file_extend (np, end, cred); + err = diskfs_grow (np, end, cred); out: mutex_unlock (&np->i_toplock); return err; |