diff options
Diffstat (limited to 'Kernel/FileSystem/SyntheticFileSystem.cpp')
-rw-r--r-- | Kernel/FileSystem/SyntheticFileSystem.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Kernel/FileSystem/SyntheticFileSystem.cpp b/Kernel/FileSystem/SyntheticFileSystem.cpp index b7d96c7b7b..79ec6c9968 100644 --- a/Kernel/FileSystem/SyntheticFileSystem.cpp +++ b/Kernel/FileSystem/SyntheticFileSystem.cpp @@ -279,11 +279,10 @@ ssize_t SynthFSInode::write_bytes(off_t offset, ssize_t size, const byte* buffer return 0; } -KResult SynthFSInode::add_child(InodeIdentifier child_id, const String& name, byte file_type) +KResult SynthFSInode::add_child(InodeIdentifier child_id, const String& name, mode_t) { (void)child_id; (void)name; - (void)file_type; ASSERT_NOT_REACHED(); } |