1
mirror of https://github.com/mpv-player/mpv synced 2024-11-18 21:16:10 +01:00

vo_drm: fix typo in error message

This commit is contained in:
a1346054 2021-08-24 22:48:27 +00:00 committed by Avi Halachmi (:avih)
parent 7314253180
commit 91b6757875

View File

@ -165,7 +165,7 @@ struct drm_atomic_context *drm_atomic_create_context(struct mp_log *log, int fd,
plane_res = drmModeGetPlaneResources(fd);
if (!plane_res) {
mp_err(log, "Cannot retrieve plane ressources: %s\n", mp_strerror(errno));
mp_err(log, "Cannot retrieve plane resources: %s\n", mp_strerror(errno));
goto fail;
}