From: José Fonseca Date: Wed, 11 Feb 2009 13:50:43 +0000 (+0000) Subject: mesa: Move statements after declarations. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8cadf6c0a152a5945e34ea8f6d9935ee399e6ae1;p=mesa.git mesa: Move statements after declarations. --- diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c index 90a3bf1f046..fcef093ac35 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);