From 5defca01f0fa744fb71e579ac8db08fa8ea0b997 Mon Sep 17 00:00:00 2001 From: EWouters <6179932+EWouters@users.noreply.github.com> Date: Wed, 16 Aug 2023 20:58:10 +0200 Subject: [PATCH] Mandelbrot: Pledge `unix` to enable image export --- Userland/Demos/Mandelbrot/Mandelbrot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Demos/Mandelbrot/Mandelbrot.cpp b/Userland/Demos/Mandelbrot/Mandelbrot.cpp index 876f91bcbc..69677c817b 100644 --- a/Userland/Demos/Mandelbrot/Mandelbrot.cpp +++ b/Userland/Demos/Mandelbrot/Mandelbrot.cpp @@ -398,7 +398,7 @@ ErrorOr serenity_main(Main::Arguments arguments) { auto app = TRY(GUI::Application::create(arguments)); - TRY(Core::System::pledge("stdio thread recvfd sendfd rpath wpath cpath")); + TRY(Core::System::pledge("stdio thread recvfd sendfd rpath unix wpath cpath")); #if 0 TRY(Core::System::unveil("/res", "r"));