From a46ca64562aeaa11a53baa1407226901f2ce0fd9 Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Wed, 7 Apr 2010 20:41:09 +0100 Subject: draw: Fix MSVC build (snprintf->util_snprintf). --- src/gallium/auxiliary/draw/draw_llvm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/gallium') 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 @@ -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); -- cgit v1.2.3