diff options
author | Andreas Kling <kling@serenityos.org> | 2021-11-07 02:15:10 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-08 00:35:27 +0100 |
commit | a7f1f1c34b99ad2bad25111746725c3736f9442f (patch) | |
tree | 7abde4d6302983a25eb3a95689e5a78ea1e405a5 /Userland/Applications/Run | |
parent | fac25501436dc3c85c0cb482942173240e94a5e4 (diff) | |
download | serenity-a7f1f1c34b99ad2bad25111746725c3736f9442f.zip |
LibCore: Use ErrorOr<T> for Core::File::open()
Diffstat (limited to 'Userland/Applications/Run')
-rw-r--r-- | Userland/Applications/Run/RunWindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/Run/RunWindow.cpp b/Userland/Applications/Run/RunWindow.cpp index 6964ac3be8..96eb30ce35 100644 --- a/Userland/Applications/Run/RunWindow.cpp +++ b/Userland/Applications/Run/RunWindow.cpp @@ -20,6 +20,7 @@ #include <LibGUI/Widget.h> #include <spawn.h> #include <stdio.h> +#include <string.h> #include <sys/wait.h> #include <unistd.h> |