diff options
author | Michal Krol <[email protected]> | 2008-02-26 11:49:25 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2008-02-26 11:49:25 +0100 |
commit | ad6bb870de6103ed240fa1f9f828bd13a4401a9a (patch) | |
tree | aa53db9f34c399b265bafd2e515b4f9949e66330 /src/gallium/auxiliary | |
parent | 7838aaffdb9d34427ebcb73aac585c85d9622018 (diff) |
gallium: Fix build on Windows.
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/cso_cache/cso_cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/cso_cache/cso_cache.c b/src/gallium/auxiliary/cso_cache/cso_cache.c index a6e8469b441..b427b509f8a 100644 --- a/src/gallium/auxiliary/cso_cache/cso_cache.c +++ b/src/gallium/auxiliary/cso_cache/cso_cache.c @@ -199,7 +199,7 @@ static INLINE void delete_cso(void *state, enum cso_cache_type type) } break; } - free(state); + FREE(state); } static INLINE void sanitize_hash(struct cso_hash *hash, enum cso_cache_type type, |