From dbb37dc53e377c06d27d210b576856f549558d32 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Tue, 21 Nov 2017 19:50:06 -0600 Subject: [PATCH] xml_editor: use new VFS root constructor Ref #91 --- src/app/xml_editor/component.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/xml_editor/component.cc b/src/app/xml_editor/component.cc index 93d8977..f15448b 100644 --- a/src/app/xml_editor/component.cc +++ b/src/app/xml_editor/component.cc @@ -507,7 +507,8 @@ struct Xml_editor::Main Vfs::Global_file_system_factory vfs_factory { heap }; Vfs::Dir_file_system vfs_root { - env, heap, vfs_config(), io_response_handler, vfs_factory }; + env, heap, vfs_config(), io_response_handler, + vfs_factory, Vfs::Dir_file_system::Root() }; /* Handle on the output file */ Vfs::Vfs_handle *vfs_handle;