From 94199fe91cfe68af7c1f925337abc8a2e330cde3 Mon Sep 17 00:00:00 2001 From: Ronan Pigott Date: Tue, 14 Jan 2020 19:39:45 -0700 Subject: ipc-json: Remove unnecessary dereference --- sway/ipc-json.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway/ipc-json.c b/sway/ipc-json.c index 6cf8504a..2e75b595 100644 --- a/sway/ipc-json.c +++ b/sway/ipc-json.c @@ -163,7 +163,7 @@ static void ipc_json_describe_output(struct sway_output *output, json_object_object_add(object, "type", json_object_new_string("output")); json_object_object_add(object, "active", json_object_new_boolean(true)); json_object_object_add(object, "dpms", - json_object_new_boolean(output->wlr_output->enabled)); + json_object_new_boolean(wlr_output->enabled)); json_object_object_add(object, "primary", json_object_new_boolean(false)); json_object_object_add(object, "layout", json_object_new_string("output")); json_object_object_add(object, "orientation", -- cgit v1.2.3-54-g00ecf