diff options
author | Brian Paul <[email protected]> | 2005-10-29 16:15:47 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-10-29 16:15:47 +0000 |
commit | a2e696e521f3829d4de935f332b607bc32b4e879 (patch) | |
tree | e77e7b7c92ca27d05b868e0b6d8729ee40620544 /src/mesa/shader/arbprogparse.c | |
parent | af13891dbdfd7ec46f85238f83eacaf6d1aeb2eb (diff) |
s/lenght/length/
Diffstat (limited to 'src/mesa/shader/arbprogparse.c')
-rw-r--r-- | src/mesa/shader/arbprogparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c index 14912b9321a..038c18fce50 100644 --- a/src/mesa/shader/arbprogparse.c +++ b/src/mesa/shader/arbprogparse.c @@ -1949,9 +1949,9 @@ parse_param (GLcontext * ctx, GLubyte ** inst, struct var_cache **vc_head, if (specified_length) { if (specified_length != (int)param_var->param_binding_length) { _mesa_set_program_error (ctx, Program->Position, - "Declared parameter array lenght does not match parameter list"); + "Declared parameter array length does not match parameter list"); _mesa_error (ctx, GL_INVALID_OPERATION, - "Declared parameter array lenght does not match parameter list"); + "Declared parameter array length does not match parameter list"); } } |