diff options
author | Vinson Lee <[email protected]> | 2010-11-10 17:30:59 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-11-10 17:30:59 -0800 |
commit | dc524adee2cfd0f115800cd4ec3f8384010f154e (patch) | |
tree | 26511ebfa9406945c986fe2c051b7ea65b54e466 /src/mesa/main/debug.c | |
parent | bcef51c3b891dcdb97fd9fce0f2b76f161b59af5 (diff) |
mesa: Fix printf format warnings.
Diffstat (limited to 'src/mesa/main/debug.c')
-rw-r--r-- | src/mesa/main/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c index faee336add2..79aa53585f9 100644 --- a/src/mesa/main/debug.c +++ b/src/mesa/main/debug.c @@ -120,7 +120,7 @@ void _mesa_print_tri_caps( const char *name, GLuint flags ) { _mesa_debug(NULL, - "%s: (0x%x) %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n", + "%s: (0x%x) %s%s%s%s%s%s%s%s%s%s%s%s%s\n", name, flags, (flags & DD_FLATSHADE) ? "flat-shade, " : "", |