diff options
author | Guido Cella <guidocella91@gmail.com> | 2020-09-04 21:36:43 +0200 |
---|---|---|
committer | Guido Cella <guidocella91@gmail.com> | 2020-09-04 21:36:43 +0200 |
commit | 8ee02008777e94e7c75f29635eead7da428dfdaa (patch) | |
tree | 09faf91de08db788c8b09558c6f340ded06f7065 /dwl.c | |
parent | ae798c694ae0b9991d23dcd35b943967475ac2e5 (diff) |
use unsigned int for loop indexes
Diffstat (limited to 'dwl.c')
-rw-r--r-- | dwl.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -409,7 +409,7 @@ applyexclusive(struct wlr_box *usable_area, edges[3].negative_axis = &usable_area->width; edges[3].margin = margin_right; - for (size_t i = 0; i < LENGTH(edges); ++i) { + for (unsigned int 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 (size_t i = 0; i < nlayers; ++i) { + for (unsigned int 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 && @@ -827,7 +827,7 @@ createmon(struct wl_listener *listener, void *data) m->w = m->m; len = LENGTH(m->layers); - for (size_t i = 0; i < len; ++i) { + for (unsigned int i = 0; i < len; ++i) { wl_list_init(&m->layers[i]); } } |