gems/vfs.h: adaptation to recent VFS API change

This is a follow-up commit to "vfs: handle root directory explicitly".
This commit is contained in:
Norman Feske 2017-12-12 16:45:13 +01:00 committed by Christian Helmuth
parent 4dd69b1d5a
commit 52301b3bb2
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ struct Genode::Root_directory : public Vfs::Io_response_handler,
Root_directory(Env &env, Allocator &alloc, Xml_node config)
:
Vfs::Global_file_system_factory(alloc),
Vfs::Dir_file_system(env, alloc, config, *this, *this),
Vfs::Dir_file_system(env, alloc, config, *this, *this, Dir_file_system::Root()),
Directory(*this, env.ep(), alloc)
{ }