sway

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

commit 2530f952c9cec4150f5ee44bdd764123ae09bd30
parent ff363aa7f7ace778180dd9cc6687a991b5106b19
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun, 17 Jul 2016 12:59:39 -0400

Fix clang warning

Diffstat:
Msway/handlers.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/handlers.c b/sway/handlers.c @@ -105,7 +105,7 @@ static void update_panel_geometries(wlc_handle output) { } static void update_background_geometry(struct background_config *config) { - struct wlc_geometry geometry = { 0 }; + struct wlc_geometry geometry = wlc_geometry_zero; geometry.size = *wlc_output_get_resolution(config->output); wlc_view_set_geometry(config->handle, 0, &geometry); }