compositor-x11: Set the name field on weston_outputs
That way log messages referencing the output are more informative.
diff --git a/src/compositor-x11.c b/src/compositor-x11.c
index 2ef1b5d..1b178b8 100644
--- a/src/compositor-x11.c
+++ b/src/compositor-x11.c
@@ -871,6 +871,10 @@
output->base.current_mode = &output->mode;
output->base.make = "xwayland";
output->base.model = "none";
+
+ if (configured_name)
+ output->base.name = strdup(configured_name);
+
weston_output_init(&output->base, &c->base,
x, y, width, height, transform, scale);