aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/resize.c
diff options
context:
space:
mode:
authorLibravatar Cole Mickens <cole.mickens@gmail.com>2018-11-17 03:23:06 -0800
committerLibravatar Cole Mickens <cole.mickens@gmail.com>2018-11-17 03:23:06 -0800
commitfb6ef83b16955e6ad0e4fb05711c28489863cdf4 (patch)
tree0d8ce9428e2b28d5e7db14080cf4cfa148406f81 /sway/commands/resize.c
parentMerge pull request #3132 from emersion/dispatch-cursor-btn-segfault (diff)
downloadsway-fb6ef83b16955e6ad0e4fb05711c28489863cdf4.tar.gz
sway-fb6ef83b16955e6ad0e4fb05711c28489863cdf4.tar.zst
sway-fb6ef83b16955e6ad0e4fb05711c28489863cdf4.zip
commands/resize: fix grow vars uninitialized
Diffstat (limited to 'sway/commands/resize.c')
-rw-r--r--sway/commands/resize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/resize.c b/sway/commands/resize.c
index 94ffbbe1..dc4e8000 100644
--- a/sway/commands/resize.c
+++ b/sway/commands/resize.c
@@ -511,7 +511,7 @@ static struct cmd_results *resize_set_tiled(struct sway_container *con,
511 */ 511 */
512static struct cmd_results *resize_set_floating(struct sway_container *con, 512static struct cmd_results *resize_set_floating(struct sway_container *con,
513 struct resize_amount *width, struct resize_amount *height) { 513 struct resize_amount *width, struct resize_amount *height) {
514 int min_width, max_width, min_height, max_height, grow_width, grow_height; 514 int min_width, max_width, min_height, max_height, grow_width = 0, grow_height = 0;
515 calculate_constraints(&min_width, &max_width, &min_height, &max_height); 515 calculate_constraints(&min_width, &max_width, &min_height, &max_height);
516 516
517 if (width->amount) { 517 if (width->amount) {