mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 17:30:12 +01:00
radeonsi: fix a snprintf warning on gcc 7.3.0
This commit is contained in:
parent
cf0a95afac
commit
a8d55374dc
1 changed files with 1 additions and 1 deletions
|
|
@ -648,7 +648,7 @@ static void emit_declaration(struct lp_build_tgsi_context *bld_base,
|
|||
|
||||
case TGSI_FILE_TEMPORARY:
|
||||
{
|
||||
char name[16] = "";
|
||||
char name[18] = "";
|
||||
LLVMValueRef array_alloca = NULL;
|
||||
unsigned decl_size;
|
||||
unsigned writemask = decl->Declaration.UsageMask;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue