From 137ad52596dec090d41a118a82d2272847dcbe5e Mon Sep 17 00:00:00 2001 From: Stepan Usatiuk Date: Sat, 4 May 2024 20:13:03 +0200 Subject: [PATCH] misc: clang format --- src/arch/x86/kmain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);