summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrr- <mkurczew@gmail.com>2015-11-07 19:37:55 +0100
committerwm4 <wm4@nowhere>2015-11-07 19:46:51 +0100
commitb1893d2084aa3fa83dbf098f46399101e6b21a68 (patch)
tree9d2b7ba00da6ac9992fe590e1c9d54c62b4e7431
parent46cee66563eafee80fd7983916fee4388c54d8ab (diff)
downloadmpv-b1893d2084aa3fa83dbf098f46399101e6b21a68.tar.bz2
mpv-b1893d2084aa3fa83dbf098f46399101e6b21a68.tar.xz
vo_opengl: fix typo
-rw-r--r--video/out/opengl/x11egl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/opengl/x11egl.c b/video/out/opengl/x11egl.c
index af167910ce..db98fe6386 100644
--- a/video/out/opengl/x11egl.c
+++ b/video/out/opengl/x11egl.c
@@ -68,7 +68,7 @@ static EGLConfig select_fb_config_egl(struct MPGLContext *ctx, bool es)
eglChooseConfig(p->egl_display, attributes, &config, 1, &config_count);
if (!config_count) {
- MP_FATAL(ctx->vo, "Could find EGL configuration!\n");
+ MP_FATAL(ctx->vo, "Could not find EGL configuration!\n");
return NULL;
}