From: Michal Krol Date: Tue, 22 Apr 2008 09:26:26 +0000 (+0200) Subject: cso: Fix build on Win32. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=83fec372b45eb0af9e2d83549b3d92afb17c38af;p=mesa.git cso: Fix build on Win32. --- 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; + } } }