summaryrefslogtreecommitdiffstats
path: root/sway/ipc-json.c
diff options
context:
space:
mode:
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 951adada..f9c6c90b 100644
--- a/sway/ipc-json.c
+++ b/sway/ipc-json.c
@@ -47,10 +47,10 @@ json_object *ipc_json_get_version() {
47static json_object *ipc_json_create_rect(struct sway_container *c) { 47static json_object *ipc_json_create_rect(struct sway_container *c) {
48 json_object *rect = json_object_new_object(); 48 json_object *rect = json_object_new_object();
49 49
50 json_object_object_add(rect, "x", json_object_new_int(c->box.x)); 50 json_object_object_add(rect, "x", json_object_new_int((int32_t)c->x));
51 json_object_object_add(rect, "y", json_object_new_int(c->box.y)); 51 json_object_object_add(rect, "y", json_object_new_int((int32_t)c->y));
52 json_object_object_add(rect, "width", json_object_new_int(c->box.width)); 52 json_object_object_add(rect, "width", json_object_new_int((int32_t)c->width));
53 json_object_object_add(rect, "height", json_object_new_int(c->box.height)); 53 json_object_object_add(rect, "height", json_object_new_int((int32_t)c->height));
54 54
55 return rect; 55 return rect;
56} 56}