diff options
author | Chad Versace <[email protected]> | 2011-01-18 15:15:19 -0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2011-01-18 15:23:18 -0800 |
commit | 46f7105df487c91569f7e4a8da74d673c12e5619 (patch) | |
tree | 52004a84aac027e6880ae0c39d36e795ce32ce65 /src/glsl/ast_to_hir.cpp | |
parent | 45e8e6c6b1b7f3bc00a578fa6809c9bc719c171a (diff) |
glsl: Fix segfault due to missing printf argument
Fixes the following Piglit tests:
glslparsertest/shaders/array2.frag
glslparsertest/shaders/dataType6.frag
NOTE: This is a candidate for the 7.9 and 7.10 branches.
Diffstat (limited to 'src/glsl/ast_to_hir.cpp')
-rw-r--r-- | src/glsl/ast_to_hir.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp index 477efade814..7a171f3a2bb 100644 --- a/src/glsl/ast_to_hir.cpp +++ b/src/glsl/ast_to_hir.cpp @@ -2509,7 +2509,8 @@ ast_declarator_list::hir(exec_list *instructions, */ if (this->type->qualifier.flags.q.constant && decl->initializer == NULL) { _mesa_glsl_error(& loc, state, - "const declaration of `%s' must be initialized"); + "const declaration of `%s' must be initialized", + decl->identifier); } /* Check if this declaration is actually a re-declaration, either to |