aboutsummaryrefslogtreecommitdiff
path: root/rootston
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2017-11-12 21:16:45 +0100
committeremersion <contact@emersion.fr>2017-11-12 21:16:45 +0100
commit28fc813ca9853147efc7915b829dd435699e9434 (patch)
treecd48a2043b489f8c6d3f38fe91a3c6d1a2f32e66 /rootston
parent5d986f1e874f93f8235fbcc333af63c5c9c99596 (diff)
parentc1eff3d3afc237aa4a988a01c88c492a4787d954 (diff)
Merge branch 'master' into cursor-scale
Diffstat (limited to 'rootston')
-rw-r--r--rootston/output.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/rootston/output.c b/rootston/output.c
index cd288195..3ed5a02c 100644
--- a/rootston/output.c
+++ b/rootston/output.c
@@ -211,8 +211,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);