summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/Inode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/FileSystem/Inode.cpp')
-rw-r--r--Kernel/FileSystem/Inode.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/Kernel/FileSystem/Inode.cpp b/Kernel/FileSystem/Inode.cpp
index 56cb560bc7..5872d2d919 100644
--- a/Kernel/FileSystem/Inode.cpp
+++ b/Kernel/FileSystem/Inode.cpp
@@ -117,19 +117,19 @@ void Inode::will_be_destroyed()
flush_metadata();
}
-int Inode::set_atime(time_t)
+KResult Inode::set_atime(time_t)
{
- return -ENOTIMPL;
+ return ENOTIMPL;
}
-int Inode::set_ctime(time_t)
+KResult Inode::set_ctime(time_t)
{
- return -ENOTIMPL;
+ return ENOTIMPL;
}
-int Inode::set_mtime(time_t)
+KResult Inode::set_mtime(time_t)
{
- return -ENOTIMPL;
+ return ENOTIMPL;
}
KResult Inode::increment_link_count()