summaryrefslogtreecommitdiff
path: root/Userland/Services/FileSystemAccessServer/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/FileSystemAccessServer/main.cpp')
-rw-r--r--Userland/Services/FileSystemAccessServer/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Services/FileSystemAccessServer/main.cpp b/Userland/Services/FileSystemAccessServer/main.cpp
index cbf295dcb3..f25b369052 100644
--- a/Userland/Services/FileSystemAccessServer/main.cpp
+++ b/Userland/Services/FileSystemAccessServer/main.cpp
@@ -6,14 +6,14 @@
#include <FileSystemAccessServer/ClientConnection.h>
#include <LibCore/LocalServer.h>
+#include <LibCore/System.h>
#include <LibGUI/Application.h>
#include <LibIPC/ClientConnection.h>
#include <LibMain/Main.h>
-#include <LibSystem/Wrappers.h>
ErrorOr<int> serenity_main(Main::Arguments)
{
- TRY(System::pledge("stdio recvfd sendfd rpath cpath wpath unix thread", nullptr));
+ TRY(Core::System::pledge("stdio recvfd sendfd rpath cpath wpath unix thread", nullptr));
auto app = GUI::Application::construct(0, nullptr);
app->set_quit_when_last_window_deleted(false);