diff options
Diffstat (limited to 'dev/zka/src/FileMgr.cc')
| -rw-r--r-- | dev/zka/src/FileMgr.cc | 6 |
1 files changed, 3 insertions, 3 deletions
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 |
