From 7a744aa3180bfbb52405b981d9d528ff511892d9 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Tue, 13 Sep 2022 17:41:10 -0400 Subject: [PATCH] egl/dri2: Fix a typo in a comment Reviewed-by: Eric Engestrom Part-of: --- src/egl/drivers/dri2/egl_dri2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/egl/drivers/dri2/egl_dri2.c b/src/egl/drivers/dri2/egl_dri2.c index d9502eaeb0a..adc272c7aca 100644 --- a/src/egl/drivers/dri2/egl_dri2.c +++ b/src/egl/drivers/dri2/egl_dri2.c @@ -1887,7 +1887,7 @@ dri2_make_current(_EGLDisplay *disp, _EGLSurface *dsurf, /* dri2_dpy->core->bindContext succeeded, so take a reference on the * dri2_dpy. This prevents dri2_dpy from being reinitialized when a * EGLDisplay is terminated and then initialized again while a - * context is still bound. See dri2_intitialize() for a more in depth + * context is still bound. See dri2_initialize() for a more in depth * explanation. */ p_atomic_inc(&dri2_dpy->ref_count); }