mesa: Fix printf format warning.

Fixes this GCC warning.
math/m_debug_norm.c: In function '_math_test_all_normal_transform_functions':
math/m_debug_norm.c:365: warning: format not a string literal and no format arguments
This commit is contained in:
Vinson Lee 2010-09-29 10:44:17 -07:00
parent ae0cd81189
commit 9c841abebc

View file

@ -362,7 +362,7 @@ void _math_test_all_normal_transform_functions( char *description )
char buf[100];
sprintf( buf, "_mesa_normal_tab[0][%s] failed test (%s)",
norm_strings[mtype], description );
_mesa_problem( NULL, buf );
_mesa_problem( NULL, "%s", buf );
}
#ifdef RUN_DEBUG_BENCHMARK