From: Rob Clark Date: Fri, 15 Jun 2018 20:11:48 +0000 (-0400) Subject: glsl: fix random typo X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e3bbc1eaf4258f9113340544cd99ceed26b10458;p=mesa.git glsl: fix random typo Just something I stumbled across. Signed-off-by: Rob Clark Reviewed-by: Timothy Arceri --- diff --git a/src/compiler/glsl/link_uniform_blocks.cpp b/src/compiler/glsl/link_uniform_blocks.cpp index e9e29d13a17..0ab9687b7fb 100644 --- a/src/compiler/glsl/link_uniform_blocks.cpp +++ b/src/compiler/glsl/link_uniform_blocks.cpp @@ -298,7 +298,7 @@ process_block_array_leaf(const char *name, if (b->is_shader_storage && parcel->buffer_size > ctx->Const.MaxShaderStorageBlockSize) { linker_error(prog, "shader storage block `%s' has size %d, " - "which is larger than than the maximum allowed (%d)", + "which is larger than the maximum allowed (%d)", b->type->name, parcel->buffer_size, ctx->Const.MaxShaderStorageBlockSize);