summaryrefslogtreecommitdiff
path: root/Userland/Services/WindowServer/main.cpp
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2022-02-06 13:33:42 +0000
committerTim Flynn <trflynn89@pm.me>2022-02-16 19:49:41 -0500
commit8260135d4d6cc50d15b459feb6010a989fcb7f5b (patch)
tree8211a9b8b29b749270c6d71f4faf6073e1a382cb /Userland/Services/WindowServer/main.cpp
parent1a4dd47d5f691f77f5a11dbb5cdd8d58b2336245 (diff)
downloadserenity-8260135d4d6cc50d15b459feb6010a989fcb7f5b.zip
LibCore+Everywhere: Return ErrorOr from ConfigFile factory methods
I've attempted to handle the errors gracefully where it was clear how to do so, and simple, but a lot of this was just adding `release_value_but_fixme_should_propagate_errors()` in places.
Diffstat (limited to 'Userland/Services/WindowServer/main.cpp')
-rw-r--r--Userland/Services/WindowServer/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WindowServer/main.cpp b/Userland/Services/WindowServer/main.cpp
index bb26ef29ad..2c56729bd7 100644
--- a/Userland/Services/WindowServer/main.cpp
+++ b/Userland/Services/WindowServer/main.cpp
@@ -36,7 +36,7 @@ ErrorOr<int> serenity_main(Main::Arguments)
TRY(Core::System::sigaction(SIGCHLD, &act, nullptr));
TRY(Core::System::pledge("stdio video thread sendfd recvfd accept rpath wpath cpath unix proc exec"));
- auto wm_config = Core::ConfigFile::open("/etc/WindowServer.ini");
+ auto wm_config = TRY(Core::ConfigFile::open("/etc/WindowServer.ini"));
auto theme_name = wm_config->read_entry("Theme", "Name", "Default");
auto theme = Gfx::load_system_theme(String::formatted("/res/themes/{}.ini", theme_name));