diff options
author | adnano <me@adnano.co> | 2024-06-09 20:30:58 -0400 |
---|---|---|
committer | adnano <me@adnano.co> | 2024-06-09 20:30:58 -0400 |
commit | 7d717b3696e8295f1236bb5c6c69417f14394883 (patch) | |
tree | 266bddf4aa2660869364ba658278a5fb448f6cdf /wayland.c | |
parent | a0df7959f9182a87a833d0a7f653f5ac8a2b5d0e (diff) | |
download | wmenu-7d717b3696e8295f1236bb5c6c69417f14394883.tar.gz |
Streamline menu callbacks
Diffstat (limited to 'wayland.c')
-rw-r--r-- | wayland.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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; |