summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/src/FS/NeFS.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dev/Kernel/src/FS/NeFS.cc')
-rw-r--r--dev/Kernel/src/FS/NeFS.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/dev/Kernel/src/FS/NeFS.cc b/dev/Kernel/src/FS/NeFS.cc
index 88f83020..45fc15fa 100644
--- a/dev/Kernel/src/FS/NeFS.cc
+++ b/dev/Kernel/src/FS/NeFS.cc
@@ -159,19 +159,19 @@ _Output BOOL NeFileSystemParser::CreateFork(_Input NEFS_FORK_STRUCT& the_fork)
}
/***********************************************************************************/
-/// @brief Find fork inside New filesystem.
+/// @brief Find fork inside filesystem.
/// @param catalog the catalog.
/// @param name the fork name.
-/// @return the fork.
+/// @return the newly found fork.
/***********************************************************************************/
_Output NEFS_FORK_STRUCT* NeFileSystemParser::FindFork(_Input NEFS_CATALOG_STRUCT* catalog,
_Input const Char* name,
- Boolean isDataFork)
+ _Input Boolean is_data)
{
auto& drive = kMountpoint.A();
NEFS_FORK_STRUCT* the_fork = nullptr;
- Lba lba = isDataFork ? catalog->DataFork : catalog->ResourceFork;
+ Lba lba = is_data ? catalog->DataFork : catalog->ResourceFork;
while (lba != 0)
{