diff options
author | Michal Krol <[email protected]> | 2008-04-22 11:26:26 +0200 |
---|---|---|
committer | Michal Krol <[email protected]> | 2008-04-22 11:26:26 +0200 |
commit | 83fec372b45eb0af9e2d83549b3d92afb17c38af (patch) | |
tree | ea2f0b60a3b9903fd620c5fdaffd9d8c831519ff /src/gallium/auxiliary/cso_cache | |
parent | ed187d39a6e0fd921b2a45a143d88ac4b66eee91 (diff) |
cso: Fix build on Win32.
Diffstat (limited to 'src/gallium/auxiliary/cso_cache')
-rw-r--r-- | src/gallium/auxiliary/cso_cache/cso_hash.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/cso_cache/cso_hash.c b/src/gallium/auxiliary/cso_cache/cso_hash.c index 8d867f86d2d..0646efd9527 100644 --- a/src/gallium/auxiliary/cso_cache/cso_hash.c +++ b/src/gallium/auxiliary/cso_cache/cso_hash.c @@ -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; + } } } |