summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/cso_cache/cso_cache.c
diff options
context:
space:
mode:
authorMichal Krol <michal@tungstengraphics.com>2008-02-26 11:49:25 +0100
committerMichal Krol <michal@tungstengraphics.com>2008-02-26 11:49:25 +0100
commitad6bb870de6103ed240fa1f9f828bd13a4401a9a (patch)
treeaa53db9f34c399b265bafd2e515b4f9949e66330 /src/gallium/auxiliary/cso_cache/cso_cache.c
parent7838aaffdb9d34427ebcb73aac585c85d9622018 (diff)
downloadexternal_mesa3d-ad6bb870de6103ed240fa1f9f828bd13a4401a9a.zip
external_mesa3d-ad6bb870de6103ed240fa1f9f828bd13a4401a9a.tar.gz
external_mesa3d-ad6bb870de6103ed240fa1f9f828bd13a4401a9a.tar.bz2
gallium: Fix build on Windows.
Diffstat (limited to 'src/gallium/auxiliary/cso_cache/cso_cache.c')
-rw-r--r--src/gallium/auxiliary/cso_cache/cso_cache.c2
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 a6e8469..b427b50 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,