From 52301b3bb24af4f4edd7be505993dc90acaffb28 Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Tue, 12 Dec 2017 16:45:13 +0100 Subject: [PATCH] gems/vfs.h: adaptation to recent VFS API change This is a follow-up commit to "vfs: handle root directory explicitly". --- repos/gems/include/gems/vfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/gems/include/gems/vfs.h b/repos/gems/include/gems/vfs.h index 12fe3e501c..ae9b3f16ed 100644 --- a/repos/gems/include/gems/vfs.h +++ b/repos/gems/include/gems/vfs.h @@ -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) { }