modesetting: Fix log msg if pixmap creation failed
Add a missing new-line character and make the message more verbose than "Failed". Reviewed-by: Adam Jackson <ajax@redhat.com> Signed-off-by: Daniel Martin <consume.noise@gmail.com>
This commit is contained in:
parent
02981fe1a8
commit
e20b1016de
|
@ -1879,7 +1879,7 @@ drmmode_set_pixmap_bo(drmmode_ptr drmmode, PixmapPtr pixmap, drmmode_bo *bo)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
if (!glamor_egl_create_textured_pixmap_from_gbm_bo(pixmap, bo->gbm)) {
|
if (!glamor_egl_create_textured_pixmap_from_gbm_bo(pixmap, bo->gbm)) {
|
||||||
xf86DrvMsg(scrn->scrnIndex, X_ERROR, "Failed");
|
xf86DrvMsg(scrn->scrnIndex, X_ERROR, "Failed to create pixmap\n");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue