summaryrefslogtreecommitdiffhomepage
path: root/Kernel/Sources/FileManager.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Sources/FileManager.cxx')
-rw-r--r--Kernel/Sources/FileManager.cxx13
1 files changed, 7 insertions, 6 deletions
diff --git a/Kernel/Sources/FileManager.cxx b/Kernel/Sources/FileManager.cxx
index 9f81c260..2c0bd366 100644
--- a/Kernel/Sources/FileManager.cxx
+++ b/Kernel/Sources/FileManager.cxx
@@ -97,9 +97,10 @@ namespace NewOS
}
Void NewFilesystemManager::Write(_Input const Char* name,
- _Input NodePtr node, _Input VoidPtr data,
- _Input Int32 flags,
- _Input SizeT size)
+ _Input NodePtr node,
+ _Input VoidPtr data,
+ _Input Int32 flags,
+ _Input SizeT size)
{
if (!size ||
size > kNewFSForkSize)
@@ -116,9 +117,9 @@ namespace NewOS
}
_Output VoidPtr NewFilesystemManager::Read(_Input const Char* name,
- _Input NodePtr node,
- _Input Int32 flags,
- _Input SizeT sz)
+ _Input NodePtr node,
+ _Input Int32 flags,
+ _Input SizeT sz)
{
if (sz > kNewFSForkSize)
return nullptr;