summaryrefslogtreecommitdiff
path: root/src/mesa/main/debug.c
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-02-11 13:50:43 +0000
committerJosé Fonseca <jfonseca@vmware.com>2009-02-11 13:50:43 +0000
commit8cadf6c0a152a5945e34ea8f6d9935ee399e6ae1 (patch)
tree1f9e5db801fb8c10ca3c9501e99f5fae1d9a2c13 /src/mesa/main/debug.c
parent5d5ae371eaeca7e33e638af3aee1ae8e162db0a7 (diff)
mesa: Move statements after declarations.
Diffstat (limited to 'src/mesa/main/debug.c')
-rw-r--r--src/mesa/main/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c
index 90a3bf1f04..fcef093ac3 100644
--- a/src/mesa/main/debug.c
+++ b/src/mesa/main/debug.c
@@ -289,8 +289,8 @@ static void
dump_texture_cb(GLuint id, void *data, void *userData)
{
struct gl_texture_object *texObj = (struct gl_texture_object *) data;
- (void) userData;
int i;
+ (void) userData;
printf("Texture %u\n", texObj->Name);
printf(" Target 0x%x\n", texObj->Target);