Mesa (master): util: Move loop variable declaration outside for loop.

Vinson Lee vlee at kemper.freedesktop.org
Sat Aug 21 21:37:18 UTC 2010


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

Author: Vinson Lee <vlee at vmware.com>
Date:   Sat Aug 21 14:36:29 2010 -0700

util: Move loop variable declaration outside for loop.

Fixes build error with MSVC.

---

 src/gallium/auxiliary/util/u_linkage.h |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/gallium/auxiliary/util/u_linkage.h b/src/gallium/auxiliary/util/u_linkage.h
index c30b56e..4720e0e 100644
--- a/src/gallium/auxiliary/util/u_linkage.h
+++ b/src/gallium/auxiliary/util/u_linkage.h
@@ -56,9 +56,10 @@ void util_semantic_layout_from_set(unsigned char *layout, const struct util_sema
 static INLINE void
 util_semantic_table_from_layout(unsigned char *table, unsigned char *layout, unsigned char first_slot_value, unsigned char num_slots)
 {
+   int i;
    memset(table, 0xff, sizeof(table));
 
-   for(int i = 0; i < num_slots; ++i)
+   for(i = 0; i < num_slots; ++i)
       table[layout[i]] = first_slot_value + i;
 }
 




More information about the mesa-commit mailing list