From c89dba94353771dbfa47e2af5e8eac01ae456213 Mon Sep 17 00:00:00 2001 From: Brandon Dowdy Date: Fri, 29 Jan 2021 23:00:58 +0000 Subject: [PATCH] examples: remove "major" and "minor" from egl_common.c Remove "major" and "minor" from egl_common.c as they are not used by the examples that use egl_common.c. --- examples/egl_common.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/egl_common.c b/examples/egl_common.c index 0a53f543..2528d9b4 100644 --- a/examples/egl_common.c +++ b/examples/egl_common.c @@ -81,8 +81,7 @@ bool egl_init(struct wl_display *display) { goto error; } - EGLint major, minor; - if (eglInitialize(egl_display, &major, &minor) == EGL_FALSE) { + if (eglInitialize(egl_display, NULL, NULL) == EGL_FALSE) { wlr_log(WLR_ERROR, "Failed to initialize EGL"); goto error; }