aboutsummaryrefslogtreecommitdiff
path: root/dwl.c
diff options
context:
space:
mode:
authorA Frederick Christensen <dwl@ivories.org>2023-02-28 21:32:35 -0600
committerLeonardo Hernández <leohdz172@proton.me>2023-03-07 22:17:05 -0600
commit6722a8953243387545a6bab23514b84cffd6a3bf (patch)
treec3443cc03b120b3467c8e7ebf6e3b81eefc1887e /dwl.c
parente4921fad28081f36fa0daa61b4bef7022a21b340 (diff)
Missing apostrophe
Diffstat (limited to 'dwl.c')
-rw-r--r--dwl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwl.c b/dwl.c
index 8043bf9..fbe4c24 100644
--- a/dwl.c
+++ b/dwl.c
@@ -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 */