diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2020-01-14 19:39:45 -0700 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2020-01-14 19:39:45 -0700 |
| commit | 2b1a09a52990d95c37f10d3a8d8320ff797168f6 (patch) | |
| tree | 7946d96e1d608c27d0db91c2ed6aee319fe9d121 | |
| parent | f8bc8d3d590132403e201efece7d113b09217c5c (diff) | |
ipc-json: Remove unnecessary dereference
| -rw-r--r-- | sway/ipc-json.c | 2 |
1 files changed, 1 insertions, 1 deletions
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", |
