Send failure code on partial atomic commit

This commit is contained in:
Scott Anderson 2017-09-24 12:09:17 +13:00
parent a466c86fba
commit 419400ae00
1 changed files with 1 additions and 2 deletions

View File

@ -57,8 +57,7 @@ static bool atomic_commit(int drm_fd, struct atomic *atom,
// Try to commit without new changes
drmModeAtomicSetCursor(atom->req, atom->cursor);
ret = drmModeAtomicCommit(drm_fd, atom->req, flags, output);
if (ret) {
if (drmModeAtomicCommit(drm_fd, atom->req, flags, output)) {
wlr_log_errno(L_ERROR, "%s: Atomic commit failed (%s)",
output->output.name, modeset ? "modeset" : "pageflip");
}