diff options
author | Ronan Pigott <rpigott@berkeley.edu> | 2020-01-14 19:39:45 -0700 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-01-16 16:15:50 +0100 |
commit | 33fc9c5f1f1404ba1a8485a98b5b2109d626f1c1 (patch) | |
tree | 9f0a8c275409ad2acdcec75341ff38e7fea7c89a /sway | |
parent | f68961fbe651fc706399ed66d327c9ec3dda7a2d (diff) |
ipc-json: Remove unnecessary dereference
Diffstat (limited to 'sway')
-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", |