Commit ba5f32cd authored by Mike Gabriel's avatar Mike Gabriel

nx-X11/extras/Mesa/src/mesa/shader/arbprogparse.c: Fix typo (grammer -> grammar).

... detected by Debian's lintian tool.
parent 7d66941a
...@@ -97,8 +97,8 @@ ...@@ -97,8 +97,8 @@
* *
* Cosmetic Stuff * Cosmetic Stuff
* ----------------------------------------------------- * -----------------------------------------------------
* - remove any leftover unused grammer.c stuff (dict_ ?) * - remove any leftover unused grammar.c stuff (dict_ ?)
* - fix grammer.c error handling so its not static * - fix grammar.c error handling so its not static
* - #ifdef around stuff pertaining to extentions * - #ifdef around stuff pertaining to extentions
* *
* Outstanding Questions: * Outstanding Questions:
...@@ -3979,7 +3979,7 @@ _mesa_parse_arb_program (GLcontext * ctx, const GLubyte * str, GLsizei len, ...@@ -3979,7 +3979,7 @@ _mesa_parse_arb_program (GLcontext * ctx, const GLubyte * str, GLsizei len,
grammar_get_last_error ((GLubyte *) error_msg, 300, &error_pos); grammar_get_last_error ((GLubyte *) error_msg, 300, &error_pos);
_mesa_set_program_error (ctx, error_pos, error_msg); _mesa_set_program_error (ctx, error_pos, error_msg);
_mesa_error (ctx, GL_INVALID_OPERATION, _mesa_error (ctx, GL_INVALID_OPERATION,
"Error loading grammer rule set"); "Error loading grammar rule set");
return GL_FALSE; return GL_FALSE;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment