fix style on space-indented function

This commit is contained in:
Devin J. Pohly 2021-02-14 12:43:10 -06:00
parent a4c0b914f0
commit 3e82fad9c4
1 changed files with 4 additions and 4 deletions

8
dwl.c
View File

@ -2411,11 +2411,11 @@ zoom(const Arg *arg)
void
activatex11(struct wl_listener *listener, void *data)
{
Client *c = wl_container_of(listener, c, activate);
Client *c = wl_container_of(listener, c, activate);
/* Only "managed" windows can be activated */
if (c->type == X11Managed)
wlr_xwayland_surface_activate(c->surface.xwayland, 1);
/* Only "managed" windows can be activated */
if (c->type == X11Managed)
wlr_xwayland_surface_activate(c->surface.xwayland, 1);
}
void