cso: Fix build on Win32.

This commit is contained in:
Michal Krol 2008-04-22 11:26:26 +02:00
parent ed187d39a6
commit 83fec372b4
1 changed files with 4 additions and 2 deletions

View 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;
}
}
}