summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authora1346054 <36859588+a1346054@users.noreply.github.com>2021-08-24 22:48:27 +0000
committerAvi Halachmi (:avih) <avihpit@yahoo.com>2021-08-26 20:35:13 +0300
commit91b6757875e5ede40dac27331d9f44efc4a52846 (patch)
treebb743b97eb3ac4252663e458916236c6efc9f8b2
parent7314253180e7c5d06bec6d1fed79ce92bff4b6be (diff)
downloadmpv-91b6757875e5ede40dac27331d9f44efc4a52846.tar.bz2
mpv-91b6757875e5ede40dac27331d9f44efc4a52846.tar.xz
vo_drm: fix typo in error message
-rw-r--r--video/out/drm_atomic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/drm_atomic.c b/video/out/drm_atomic.c
index 0fa22f0823..bf7012c155 100644
--- a/video/out/drm_atomic.c
+++ b/video/out/drm_atomic.c
@@ -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;
}