Module: Mesa Branch: master Commit: a7fb25bfe418ed900c246ec8007e595a071881c9 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a7fb25bfe418ed900c246ec8007e595a071881c9
Author: Simon Ser <[email protected]> Date: Tue Dec 1 14:21:56 2020 +0100 egl: fix typo in wl_drm error message Signed-off-by: Simon Ser <[email protected]> Reviewed-by: Michel Dänzer <[email protected]> Reviewed-by: Daniel Stone <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7854> --- src/egl/wayland/wayland-drm/wayland-drm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/egl/wayland/wayland-drm/wayland-drm.c b/src/egl/wayland/wayland-drm/wayland-drm.c index 51cdd2cb845..b72d10f6911 100644 --- a/src/egl/wayland/wayland-drm/wayland-drm.c +++ b/src/egl/wayland/wayland-drm/wayland-drm.c @@ -183,7 +183,7 @@ drm_authenticate(struct wl_client *client, if (drm->callbacks.authenticate(drm->user_data, id) < 0) wl_resource_post_error(resource, WL_DRM_ERROR_AUTHENTICATE_FAIL, - "authenicate failed"); + "authenticate failed"); else wl_resource_post_event(resource, WL_DRM_AUTHENTICATED); } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
