summaryrefslogtreecommitdiff
path: root/Kernel/Tasks/SyncTask.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Tasks/SyncTask.cpp')
-rw-r--r--Kernel/Tasks/SyncTask.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Tasks/SyncTask.cpp b/Kernel/Tasks/SyncTask.cpp
index 973cbe5786..b4715a11eb 100644
--- a/Kernel/Tasks/SyncTask.cpp
+++ b/Kernel/Tasks/SyncTask.cpp
@@ -18,7 +18,7 @@ UNMAP_AFTER_INIT void SyncTask::spawn()
dbgln("VFS SyncTask is running");
for (;;) {
VirtualFileSystem::sync();
- (void)Thread::current()->sleep(Time::from_seconds(1));
+ (void)Thread::current()->sleep(Duration::from_seconds(1));
}
}));
}