aboutsummaryrefslogtreecommitdiffstats
path: root/sway/ipc-json.c
diff options
context:
space:
mode:
authorLibravatar Armin Preiml <apreiml@strohwolke.at>2018-09-06 08:46:50 +0200
committerLibravatar Armin Preiml <apreiml@strohwolke.at>2018-09-08 13:24:01 +0200
commit2dec0d894b3db4c6bdffadbb3b506c32fcfd6354 (patch)
tree01837663dcab712d698bc74afad321fc44369804 /sway/ipc-json.c
parentget_tree: default values (diff)
downloadsway-2dec0d894b3db4c6bdffadbb3b506c32fcfd6354.tar.gz
sway-2dec0d894b3db4c6bdffadbb3b506c32fcfd6354.tar.zst
sway-2dec0d894b3db4c6bdffadbb3b506c32fcfd6354.zip
get_tree: percent cast to double on division
Diffstat (limited to 'sway/ipc-json.c')
-rw-r--r--sway/ipc-json.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c
index fc65b5f2..682186d5 100644
--- a/sway/ipc-json.c
+++ b/sway/ipc-json.c
@@ -153,8 +153,8 @@ static void ipc_json_describe_output(struct sway_output *output,
153 } 153 }
154 154
155 if (parent_box.width != 0 && parent_box.height != 0) { 155 if (parent_box.width != 0 && parent_box.height != 0) {
156 double percent = (output->width / parent_box.width) 156 double percent = ((double)output->width / (double)parent_box.width)
157 * (output->height / parent_box.height); 157 * ((double)output->height / (double)parent_box.height);
158 json_object_object_add(object, "percent", json_object_new_double(percent)); 158 json_object_object_add(object, "percent", json_object_new_double(percent));
159 } 159 }
160} 160}
@@ -292,8 +292,8 @@ static void ipc_json_describe_container(struct sway_container *c, json_object *o
292 } 292 }
293 293
294 if (parent_box.width != 0 && parent_box.height != 0) { 294 if (parent_box.width != 0 && parent_box.height != 0) {
295 double percent = (c->width / parent_box.width) 295 double percent = ((double)c->width / (double)parent_box.width)
296 * (c->height / parent_box.height); 296 * ((double)c->height / (double)parent_box.height);
297 json_object_object_add(object, "percent", json_object_new_double(percent)); 297 json_object_object_add(object, "percent", json_object_new_double(percent));
298 } 298 }
299 299