mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 04:30:10 +01:00
cso: Fix build on Win32.
This commit is contained in:
parent
ed187d39a6
commit
83fec372b4
1 changed files with 4 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue