Fix build.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39007 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rene Gollent 2010-10-18 20:26:33 +00:00
parent d63f4274b6
commit 1f0b0045c2

View File

@ -1022,6 +1022,13 @@ rootfs_read_stat(fs_volume* _volume, fs_vnode* _v, struct stat* stat)
}
static status_t
rootfs_preallocate(fs_volume*, fs_vnode*, off_t, off_t)
{
return B_NOT_SUPPORTED;
}
static status_t
rootfs_write_stat(fs_volume* _volume, fs_vnode* _vnode, const struct stat* stat,
uint32 statMask)
@ -1174,6 +1181,7 @@ fs_vnode_ops sVnodeOps = {
NULL, // fs_access()
&rootfs_read_stat,
&rootfs_write_stat,
&rootfs_preallocate,
/* file */
&rootfs_create,