From 0b147e4a36ef52d0654ef330edc217c1bbc294e0 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Tue, 3 Dec 2019 15:40:05 +0200 Subject: [PATCH] xwm: add newline to cardinal array Add the missing newline to printing a property that is of type cardinal array. Fixes messed up debug scope output. Signed-off-by: Pekka Paalanen --- xwayland/window-manager.c | 1 + 1 file changed, 1 insertion(+) diff --git a/xwayland/window-manager.c b/xwayland/window-manager.c index 80b13d6b..3643a4be 100644 --- a/xwayland/window-manager.c +++ b/xwayland/window-manager.c @@ -466,6 +466,7 @@ dump_property(FILE *fp, struct weston_wm *wm, fprintf(fp, "\n"); } else if (reply->type == XCB_ATOM_CARDINAL) { dump_cardinal_array(fp, reply); + fprintf(fp, "\n"); } else if (reply->type == XCB_ATOM_WINDOW && reply->format == 32) { window_value = xcb_get_property_value(reply); fprintf(fp, "win %u\n", *window_value);