From e8d2a8dc111885b8a5101d44d1a18edc85c547ca Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 22 Oct 2024 04:44:14 +0200 Subject: IMP: Format code and refactors. Signed-off-by: Amlal El Mahrouss --- dev/zka/src/FileMgr.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dev/zka/src/FileMgr.cc') diff --git a/dev/zka/src/FileMgr.cc b/dev/zka/src/FileMgr.cc index c9591bf0..40819568 100644 --- a/dev/zka/src/FileMgr.cc +++ b/dev/zka/src/FileMgr.cc @@ -39,14 +39,14 @@ namespace Kernel /// @brief Mount filesystem. /// @param mount_ptr The filesystem to mount. /// @return if it succeeded true, otherwise false. - bool IFilesystemMgr::Mount(_Input IFilesystemMgr* mount_ptr) + _Output Bool IFilesystemMgr::Mount(_Input IFilesystemMgr* mount_ptr) { if (mount_ptr != nullptr) { kMountedFilesystem = mount_ptr; - return true; + return Yes; } - return false; + return No; } } // namespace Kernel -- cgit v1.2.3