From: José Fonseca Date: Wed, 7 Apr 2010 19:41:09 +0000 (+0100) Subject: draw: Fix MSVC build (snprintf->util_snprintf). X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a46ca64562aeaa11a53baa1407226901f2ce0fd9;p=mesa.git draw: Fix MSVC build (snprintf->util_snprintf). --- diff --git a/src/gallium/auxiliary/draw/draw_llvm.c b/src/gallium/auxiliary/draw/draw_llvm.c index 4912b6ac508..3a4e14c7a21 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);