diff options
author | Guido Cella <guidocella91@gmail.com> | 2020-09-05 18:29:39 +0200 |
---|---|---|
committer | Guido Cella <guidocella91@gmail.com> | 2020-09-05 18:29:39 +0200 |
commit | 52a4d3a1e54203c38fbc65345d19f2f1b704adb4 (patch) | |
tree | fe8d3569c2c6c16afaf4ff4641b3575d870fb6d3 /dwl.c | |
parent | 9743778d09b44e346f9a764499f1caa0dc0cf5c5 (diff) |
use size_t for lengths
Diffstat (limited to 'dwl.c')
-rw-r--r-- | dwl.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -409,7 +409,7 @@ applyexclusive(struct wlr_box *usable_area, edges[3].negative_axis = &usable_area->width; edges[3].margin = margin_right; - for (unsigned int i = 0; i < LENGTH(edges); ++i) { + for (size_t i = 0; i < LENGTH(edges); ++i) { if ((anchor == edges[i].singular_anchor || anchor == edges[i].anchor_triplet) && exclusive + edges[i].margin > 0) { if (edges[i].positive_axis) @@ -585,7 +585,7 @@ arrangelayers(Monitor *m) &usable_area, false); // Find topmost keyboard interactive layer, if such a layer exists - for (unsigned int i = 0; i < nlayers; ++i) { + for (size_t i = 0; i < nlayers; ++i) { wl_list_for_each_reverse(layersurface, &m->layers[layers_above_shell[i]], link) { if (layersurface->layer_surface->current.keyboard_interactive && @@ -820,7 +820,7 @@ createmon(struct wl_listener *listener, void *data) m->m = *wlr_output_layout_get_box(output_layout, m->wlr_output); m->w = m->m; - for (unsigned int i = 0; i < nlayers; ++i) { + for (size_t i = 0; i < nlayers; ++i) { wl_list_init(&m->layers[i]); } } @@ -1982,7 +1982,7 @@ shouldfocusclients(Monitor *m) ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY, ZWLR_LAYER_SHELL_V1_LAYER_TOP, }; - for (unsigned int i = 0; i < LENGTH(layers_above_shell); ++i) + for (size_t i = 0; i < LENGTH(layers_above_shell); ++i) wl_list_for_each(layersurface, &m->layers[layers_above_shell[i]], link) if (layersurface->layer_surface->current.keyboard_interactive && !layersurface->unmapping) |