From 8920d64f7d711ed83de4126ba2b0fd649844a4b3 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Tue, 12 Mar 2019 19:38:06 +0100 Subject: [PATCH] Fix typo --- kitty/gl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/gl.h b/kitty/gl.h index 1c73be0b6..a6f5ddf55 100644 --- a/kitty/gl.h +++ b/kitty/gl.h @@ -37,7 +37,7 @@ check_for_gl_error(const char *name, void UNUSED *funcptr, int UNUSED len_args, case GL_STACK_UNDERFLOW: f("An attempt has been made to perform an operation that would cause an internal stack to underflow. (GL_STACK_UNDERFLOW)"); case GL_STACK_OVERFLOW: - f("An attempt has been made to perform an operation that would cause an internal stack to underflow. (GL_STACK_OVERFLOW)"); + f("An attempt has been made to perform an operation that would cause an internal stack to overflow. (GL_STACK_OVERFLOW)"); default: fatal("An unknown OpenGL error occurred with code: %d (calling function: %s)", code, name); break;