Mesa (master): mesa: Move statements after declarations.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Wed Feb 11 13:52:22 UTC 2009


Module: Mesa
Branch: master
Commit: 8cadf6c0a152a5945e34ea8f6d9935ee399e6ae1
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=8cadf6c0a152a5945e34ea8f6d9935ee399e6ae1

Author: José Fonseca <jfonseca at vmware.com>
Date:   Wed Feb 11 13:50:43 2009 +0000

mesa: Move statements after declarations.

---

 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 90a3bf1..fcef093 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);




More information about the mesa-commit mailing list