From 1588094b9900b66a023fb2446651f96d6d7315b3 Mon Sep 17 00:00:00 2001 From: emersion Date: Sat, 21 Apr 2018 10:20:33 +0100 Subject: Remove a few local prefixed symbols --- render/egl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'render/egl.c') diff --git a/render/egl.c b/render/egl.c index f398974d..b52682ea 100644 --- a/render/egl.c +++ b/render/egl.c @@ -241,7 +241,7 @@ EGLSurface wlr_egl_create_surface(struct wlr_egl *egl, void *window) { return surf; } -int wlr_egl_get_buffer_age(struct wlr_egl *egl, EGLSurface surface) { +static int egl_get_buffer_age(struct wlr_egl *egl, EGLSurface surface) { if (!egl->egl_exts.buffer_age) { return -1; } @@ -265,7 +265,7 @@ bool wlr_egl_make_current(struct wlr_egl *egl, EGLSurface surface, } if (buffer_age != NULL) { - *buffer_age = wlr_egl_get_buffer_age(egl, surface); + *buffer_age = egl_get_buffer_age(egl, surface); } return true; } -- cgit v1.2.3