commit f9bde0030dd12d1afd8dd6378f099944727561cf
parent a7b9e63cbcacc5dd4629598734a231b9f830670d
Author: Konstantin Pospelov <kupospelov@gmail.com>
Date: Sun, 25 Nov 2018 15:16:45 +0300
resize set: add assertion for an invalid unit
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/sway/commands/resize.c b/sway/commands/resize.c
@@ -524,7 +524,9 @@ static struct cmd_results *resize_set_floating(struct sway_container *con,
grow_width = width->amount - con->width;
con->x -= grow_width / 2;
con->width = width->amount;
+ break;
case RESIZE_UNIT_INVALID:
+ sway_assert(false, "invalid width unit");
break;
}
}
@@ -542,7 +544,9 @@ static struct cmd_results *resize_set_floating(struct sway_container *con,
grow_height = height->amount - con->height;
con->y -= grow_height / 2;
con->height = height->amount;
+ break;
case RESIZE_UNIT_INVALID:
+ sway_assert(false, "invalid height unit");
break;
}
}