cso: Fix build on Win32.
authorMichal Krol <michal@tungstengraphics.com>
Tue, 22 Apr 2008 09:26:26 +0000 (11:26 +0200)
committerMichal Krol <michal@tungstengraphics.com>
Tue, 22 Apr 2008 09:26:26 +0000 (11:26 +0200)
src/gallium/auxiliary/cso_cache/cso_hash.c

index 8d867f86d2d9c21dfc0e73bdacaa2d3cf0b4d300..0646efd9527867b9c7f462bf5044ceda654be4d4 100644 (file)
@@ -228,8 +228,10 @@ struct cso_hash_iter cso_hash_insert(struct cso_hash *hash,
          return null_iter;
       }
 
-      struct cso_hash_iter iter = {hash, node};
-      return iter;
+      {
+         struct cso_hash_iter iter = {hash, node};
+         return iter;
+      }
    }
 }