diff --git a/src/arch/x86/kmain.cpp b/src/arch/x86/kmain.cpp index 8a1c988c4..183a8909b 100644 --- a/src/arch/x86/kmain.cpp +++ b/src/arch/x86/kmain.cpp @@ -86,8 +86,8 @@ void ktask_main() { FDT::FD fdh = VFSApi::open(StrToPath("/home")); File *fh = VFSApi::get(fdh); - assert2(fh != nullptr,"Home dir not found!"); - assert2(fh->dir().get() != nullptr,"Home dir not dir!"); + assert2(fh != nullptr, "Home dir not found!"); + assert2(fh->dir().get() != nullptr, "Home dir not dir!"); VFSGlobals::mounts.add_mount(new MemFs())->set_root(static_ptr_cast(fh->node())); VFSApi::close(fdh);