From 2914a6da8b73e4e49d781b8db60f9179fa08fe45 Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Sat, 16 Feb 2019 16:16:10 +0000 Subject: [PATCH] compositor-drm: Add missing newline to debug print The 'created new mode blob' print was missing a newline, unlike all the others. Signed-off-by: Daniel Stone --- libweston/compositor-drm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libweston/compositor-drm.c b/libweston/compositor-drm.c index 46db6d6c..39397630 100644 --- a/libweston/compositor-drm.c +++ b/libweston/compositor-drm.c @@ -2506,7 +2506,7 @@ drm_mode_ensure_blob(struct drm_backend *backend, struct drm_mode *mode) if (ret != 0) weston_log("failed to create mode property blob: %m\n"); - drm_debug(backend, "\t\t\t[atomic] created new mode blob %lu for %s", + drm_debug(backend, "\t\t\t[atomic] created new mode blob %lu for %s\n", (unsigned long) mode->blob_id, mode->mode_info.name); return ret;