diff options
Diffstat (limited to 'backend/drm/atomic.c')
-rw-r--r-- | backend/drm/atomic.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/backend/drm/atomic.c b/backend/drm/atomic.c index 310138f0..4cfd5566 100644 --- a/backend/drm/atomic.c +++ b/backend/drm/atomic.c @@ -31,8 +31,10 @@ static bool atomic_commit(struct atomic *atom, } int ret = drmModeAtomicCommit(drm->fd, atom->req, flags, drm); - if (ret) { - wlr_drm_conn_log_errno(conn, WLR_ERROR, "Atomic %s failed (%s)", + if (ret != 0) { + wlr_drm_conn_log_errno(conn, + (flags & DRM_MODE_ATOMIC_TEST_ONLY) ? WLR_DEBUG : WLR_ERROR, + "Atomic %s failed (%s)", (flags & DRM_MODE_ATOMIC_TEST_ONLY) ? "test" : "commit", (flags & DRM_MODE_ATOMIC_ALLOW_MODESET) ? "modeset" : "pageflip"); return false; |