aboutsummaryrefslogtreecommitdiff
path: root/wayland.c
diff options
context:
space:
mode:
authoradnano <me@adnano.co>2024-06-09 20:30:58 -0400
committeradnano <me@adnano.co>2024-06-09 20:30:58 -0400
commit7d717b3696e8295f1236bb5c6c69417f14394883 (patch)
tree266bddf4aa2660869364ba658278a5fb448f6cdf /wayland.c
parenta0df7959f9182a87a833d0a7f653f5ac8a2b5d0e (diff)
downloadwmenu-7d717b3696e8295f1236bb5c6c69417f14394883.tar.gz
Streamline menu callbacks
Diffstat (limited to 'wayland.c')
-rw-r--r--wayland.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/wayland.c b/wayland.c
index d31ca20..0471fe4 100644
--- a/wayland.c
+++ b/wayland.c
@@ -494,11 +494,10 @@ int menu_run(struct menu *menu) {
}
}
- bool failure = menu->failure;
context_destroy(context);
menu->context = NULL;
- if (failure) {
+ if (menu->failure) {
return EXIT_FAILURE;
}
return EXIT_SUCCESS;