diff options
| author | José Fonseca <jfonseca@vmware.com> | 2009-02-11 13:50:43 +0000 |
|---|---|---|
| committer | José Fonseca <jfonseca@vmware.com> | 2009-02-11 13:50:43 +0000 |
| commit | 8cadf6c0a152a5945e34ea8f6d9935ee399e6ae1 (patch) | |
| tree | 1f9e5db801fb8c10ca3c9501e99f5fae1d9a2c13 | |
| parent | 5d5ae371eaeca7e33e638af3aee1ae8e162db0a7 (diff) | |
mesa: Move statements after declarations.
| -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 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); |
