From: José Fonseca Date: Thu, 18 Aug 2011 16:58:02 +0000 (+0100) Subject: llvmpipe: snprintf->util_snprintf. X-Git-Tag: 062012170305~4896^2~156 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a7f67b1c50d5d835c371d9aeaeca681fbd354ef8;p=profile%2Fivi%2Fmesa.git llvmpipe: snprintf->util_snprintf. For MSVC. --- diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c index e3f8c19..9e2a45c 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -30,6 +30,7 @@ #include "util/u_math.h" #include "util/u_cpu_detect.h" #include "util/u_format.h" +#include "util/u_string.h" #include "util/u_format_s3tc.h" #include "pipe/p_defines.h" #include "pipe/p_screen.h" @@ -94,7 +95,7 @@ static const char * llvmpipe_get_name(struct pipe_screen *screen) { static char buf[100]; - snprintf(buf, sizeof(buf), "llvmpipe (LLVM 0x%x)", HAVE_LLVM); + util_snprintf(buf, sizeof(buf), "llvmpipe (LLVM 0x%x)", HAVE_LLVM); return buf; }