summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/auxiliary/draw')
-rw-r--r--src/gallium/auxiliary/draw/draw_llvm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_llvm.c b/src/gallium/auxiliary/draw/draw_llvm.c
index 4912b6ac50..3a4e14c7a2 100644
--- a/src/gallium/auxiliary/draw/draw_llvm.c
+++ b/src/gallium/auxiliary/draw/draw_llvm.c
@@ -14,6 +14,7 @@
#include "gallivm/lp_bld_init.h"
#include "util/u_cpu_detect.h"
+#include "util/u_string.h"
#include "tgsi/tgsi_dump.h"
#include <llvm-c/Transforms/Scalar.h>
@@ -99,7 +100,7 @@ create_vertex_header(struct draw_llvm *llvm, int data_elems)
LLVMTypeRef vertex_header;
char struct_name[24];
- snprintf(struct_name, 23, "vertex_header%d", data_elems);
+ util_snprintf(struct_name, 23, "vertex_header%d", data_elems);
elem_types[0] = LLVMIntType(32);
elem_types[1] = LLVMArrayType(LLVMFloatType(), 4);