1
1
mirror of https://github.com/swaywm/sway synced 2024-11-18 23:14:03 +01:00

Fix clang warning

This commit is contained in:
Drew DeVault 2016-07-17 12:59:39 -04:00
parent ff363aa7f7
commit 2530f952c9

@ -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);
}