~ruther/dwl

6722a8953243387545a6bab23514b84cffd6a3bf — A Frederick Christensen 2 years ago e4921fa
Missing apostrophe
1 files changed, 1 insertions(+), 1 deletions(-)

M dwl.c
M dwl.c => dwl.c +1 -1
@@ 424,7 424,7 @@ applybounds(Client *c, struct wlr_box *bbox)
		c->geom.width = MAX(min.width + (2 * (int)c->bw), c->geom.width);
		c->geom.height = MAX(min.height + (2 * (int)c->bw), c->geom.height);
		/* Some clients set their max size to INT_MAX, which does not violate the
		 * protocol but its unnecesary, as they can set their max size to zero. */
		 * protocol but it's unnecesary, as they can set their max size to zero. */
		if (max.width > 0 && !(2 * c->bw > INT_MAX - max.width)) /* Checks for overflow */
			c->geom.width = MIN(max.width + (2 * c->bw), c->geom.width);
		if (max.height > 0 && !(2 * c->bw > INT_MAX - max.height)) /* Checks for overflow */

Do not follow this link