diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-11-11 17:36:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-11 17:36:14 -0500 |
commit | c1eff3d3afc237aa4a988a01c88c492a4787d954 (patch) | |
tree | a6f72b67564c0e0552f3cd9a5eaf81c158197558 /rootston | |
parent | 2bee288090d930a09be5f9176a519c1ec02c63de (diff) | |
parent | 09279b90a63c5fdb2e28a61f2dfc936285126177 (diff) |
Merge pull request #413 from emersion/output-serial
Add wlr_output.serial
Diffstat (limited to 'rootston')
-rw-r--r-- | rootston/output.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/rootston/output.c b/rootston/output.c index d853c45f..a929e6be 100644 --- a/rootston/output.c +++ b/rootston/output.c @@ -210,8 +210,9 @@ void output_add_notify(struct wl_listener *listener, void *data) { struct roots_config *config = desktop->config; wlr_log(L_DEBUG, "Output '%s' added", wlr_output->name); - wlr_log(L_DEBUG, "%s %s %"PRId32"mm x %"PRId32"mm", wlr_output->make, - wlr_output->model, wlr_output->phys_width, wlr_output->phys_height); + wlr_log(L_DEBUG, "%s %s %s %"PRId32"mm x %"PRId32"mm", wlr_output->make, + wlr_output->model, wlr_output->serial, wlr_output->phys_width, + wlr_output->phys_height); if (wl_list_length(&wlr_output->modes) > 0) { struct wlr_output_mode *mode = NULL; mode = wl_container_of((&wlr_output->modes)->prev, mode, link); |