diff options
author | Ian Romanick <[email protected]> | 2013-08-09 13:44:49 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2013-08-19 16:39:04 -0700 |
commit | 0b5fb6d4176c8f9145ae5026089bec5096af50b0 (patch) | |
tree | af716640039dab7bda29d735f46c0749b523ec03 /src/glsl/ast_to_hir.cpp | |
parent | e197f5373037a972244e15b8453007dd165b9b35 (diff) |
glsl: Remove extra "types" from error message
Send it straight to the Department of Redundancy Department.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/glsl/ast_to_hir.cpp')
-rw-r--r-- | src/glsl/ast_to_hir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp index 04b16c8aa82..3807fdec9b3 100644 --- a/src/glsl/ast_to_hir.cpp +++ b/src/glsl/ast_to_hir.cpp @@ -4282,7 +4282,7 @@ ast_type_specifier::hir(exec_list *instructions, } if (!is_valid_default_precision_type(state, this->type_name)) { _mesa_glsl_error(&loc, state, - "default precision statements apply only to types " + "default precision statements apply only to " "float, int, and sampler types"); return NULL; } |