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 <pekka.paalanen@collabora.com>
This commit is contained in:
parent
dee14a0a9e
commit
0b147e4a36
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue