Mesa (master): mesa: Fix printf format warning.

Vinson Lee vlee at kemper.freedesktop.org
Wed Sep 29 17:31:28 UTC 2010


Module: Mesa
Branch: master
Commit: ae0cd811892d55bee12afed88fd12bb2611517d3
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=ae0cd811892d55bee12afed88fd12bb2611517d3

Author: Vinson Lee <vlee at vmware.com>
Date:   Wed Sep 29 10:30:04 2010 -0700

mesa: Fix printf format warning.

Fixes this GCC warning.
math/m_debug_clip.c: In function '_math_test_all_cliptest_functions':
math/m_debug_clip.c:363: warning: format not a string literal and no format arguments

---

 src/mesa/math/m_debug_clip.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/mesa/math/m_debug_clip.c b/src/mesa/math/m_debug_clip.c
index 7ea5428..e97afaf 100644
--- a/src/mesa/math/m_debug_clip.c
+++ b/src/mesa/math/m_debug_clip.c
@@ -360,7 +360,7 @@ void _math_test_all_cliptest_functions( char *description )
 	    char buf[100];
 	    sprintf( buf, "%s[%d] failed test (%s)",
 		     cnames[np], psize, description );
-	    _mesa_problem( NULL, buf );
+	    _mesa_problem( NULL, "%s", buf );
 	 }
 #ifdef RUN_DEBUG_BENCHMARK
 	 if ( mesa_profile )




More information about the mesa-commit mailing list