diff --git a/Userland/open.cpp b/Userland/open.cpp index bb90b04b4e..11588bad0d 100644 --- a/Userland/open.cpp +++ b/Userland/open.cpp @@ -27,11 +27,13 @@ #include #include #include +#include #include #include int main(int argc, char* argv[]) { + Core::EventLoop loop; Vector urls_or_paths; Core::ArgsParser parser; parser.add_positional_argument(urls_or_paths, "URL or file path to open", "url-or-path");