Module: Mesa Branch: master Commit: a7f67b1c50d5d835c371d9aeaeca681fbd354ef8 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a7f67b1c50d5d835c371d9aeaeca681fbd354ef8
Author: José Fonseca <[email protected]> Date: Thu Aug 18 17:58:02 2011 +0100 llvmpipe: snprintf->util_snprintf. For MSVC. --- src/gallium/drivers/llvmpipe/lp_screen.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) 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; } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
