From: Pekka Paalanen Date: Tue, 3 Dec 2019 13:40:05 +0000 (+0200) Subject: xwm: add newline to cardinal array X-Git-Tag: upstream/9.0.0~207 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b147e4a36ef52d0654ef330edc217c1bbc294e0;p=platform%2Fupstream%2Fweston.git 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 --- 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);