1
0
Fork 0

kms-impl-simple: Include mode name in error message

https://gitlab.gnome.org/GNOME/mutter/merge_requests/1007
This commit is contained in:
Jonas Ådahl 2020-01-14 11:23:04 +01:00
parent c0038f6dac
commit 7733f88168

View file

@ -247,7 +247,8 @@ process_mode_set (MetaKmsImpl *impl,
if (ret != 0)
{
g_set_error (error, G_IO_ERROR, g_io_error_from_errno (-ret),
"Failed to set mode on CRTC %u: %s",
"Failed to set mode %s on CRTC %u: %s",
mode_set->drm_mode ? mode_set->drm_mode->name : "off",
meta_kms_crtc_get_id (crtc),
g_strerror (-ret));
return FALSE;