sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit d8212243c99f3be828033a5cc76b258990aa565b
parent 6ec57271b6dd7d042158ea7f4e4e87a7cfc6f14f
Author: Carl Smedstad <carl.smedstad@protonmail.com>
Date:   Fri, 30 Dec 2022 08:26:52 +0100

Remove redundant return statements

Diffstat:
Msway/config/bar.c | 1-
Msway/config/seat.c | 1-
Msway/ipc-server.c | 1-
3 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/sway/config/bar.c b/sway/config/bar.c @@ -256,7 +256,6 @@ static void invoke_swaybar(struct bar_config *bar) { } sway_log(SWAY_DEBUG, "Spawned swaybar %s", bar->id); - return; } void load_swaybar(struct bar_config *bar) { diff --git a/sway/config/seat.c b/sway/config/seat.c @@ -99,7 +99,6 @@ static void seat_attachment_config_free( struct seat_attachment_config *attachment) { free(attachment->identifier); free(attachment); - return; } static struct seat_attachment_config *seat_attachment_config_copy( diff --git a/sway/ipc-server.c b/sway/ipc-server.c @@ -909,7 +909,6 @@ void ipc_client_handle_command(struct ipc_client *client, uint32_t payload_lengt exit_cleanup: free(buf); - return; } bool ipc_send_reply(struct ipc_client *client, enum ipc_command_type payload_type,