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 <daniels@collabora.com>
This commit is contained in:
Daniel Stone 2019-02-16 16:16:10 +00:00 committed by Pekka Paalanen
parent 426c24673f
commit 2914a6da8b
1 changed files with 1 additions and 1 deletions

View File

@ -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;