summaryrefslogtreecommitdiff
path: root/src/mesa/math
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-09-29 10:46:46 -0700
committerVinson Lee <vlee@vmware.com>2010-09-29 10:46:46 -0700
commitaa62416ae17b707ce059e92197f719a6896d109c (patch)
treea538008067c3968e879f1cba4fbe13c6831d1c35 /src/mesa/math
parent9c841abebc809be232032066c314d37231e595e2 (diff)
mesa: Fix printf format warning.
Fixes this GCC warning. math/m_debug_xform.c: In function '_math_test_all_transform_functions': math/m_debug_xform.c:320: warning: format not a string literal and no format arguments
Diffstat (limited to 'src/mesa/math')
-rw-r--r--src/mesa/math/m_debug_xform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/math/m_debug_xform.c b/src/mesa/math/m_debug_xform.c
index 46bd4545170..7d815664a14 100644
--- a/src/mesa/math/m_debug_xform.c
+++ b/src/mesa/math/m_debug_xform.c
@@ -317,7 +317,7 @@ void _math_test_all_transform_functions( char *description )
char buf[100];
sprintf(buf, "_mesa_transform_tab[0][%d][%s] failed test (%s)",
psize, mstrings[mtype], description );
- _mesa_problem( NULL, buf );
+ _mesa_problem( NULL, "%s", buf );
}
#ifdef RUN_DEBUG_BENCHMARK
if ( mesa_profile )