diff options
author | Vito Caputo <vcaputo@gnugeneration.com> | 2017-03-25 04:23:32 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@gnugeneration.com> | 2017-03-25 04:23:32 -0700 |
commit | 1d7368838282740cb81f9fafe77b260991e7c1be (patch) | |
tree | d77dabaab9ec7d8715a4fc2324e048ccf40ef360 /src/composite.c | |
parent | fd3dc25ae8512d3acdd29d3ea5c8643724c29e7b (diff) |
*: more minor style fixups
Diffstat (limited to 'src/composite.c')
-rw-r--r-- | src/composite.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/composite.c b/src/composite.c index 76a6d81..ad04480 100644 --- a/src/composite.c +++ b/src/composite.c @@ -198,7 +198,8 @@ void vwm_composite_paint_all(vwm_t *vwm) repaint_needed = 0; - if (!undamage_region) undamage_region = XFixesCreateRegion(VWM_XDISPLAY(vwm), NULL, 0); + if (!undamage_region) + undamage_region = XFixesCreateRegion(VWM_XDISPLAY(vwm), NULL, 0); /* (re)create the root picture from the root window and allocate a double buffer for the off-screen composition of the damaged contents */ if (root_picture == None) { @@ -268,7 +269,7 @@ void vwm_composite_paint_all(vwm_t *vwm) /* since translucent windows aren't supported in vwm, I can do this more efficiently */ list_for_each_entry_prev(xwin, &vwm->xwindows, xwindows) { - XRectangle r; + XRectangle r; if (!vwm_xwin_is_mapped(vwm, xwin) || xwin->occluded) continue; /* if !mapped or occluded skip */ |