summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonan Pigott <rpigott@berkeley.edu>2020-01-14 19:39:45 -0700
committerDrew DeVault <sir@cmpwn.com>2020-01-22 13:30:52 -0500
commit94199fe91cfe68af7c1f925337abc8a2e330cde3 (patch)
tree7946d96e1d608c27d0db91c2ed6aee319fe9d121
parentb9398540bf47ae55c892455d4f165dacf4131773 (diff)
ipc-json: Remove unnecessary dereference
-rw-r--r--sway/ipc-json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c
index 6cf8504a3..2e75b5951 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",