From: Michal Krol Date: Tue, 26 Feb 2008 10:49:25 +0000 (+0100) Subject: gallium: Fix build on Windows. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ad6bb870de6103ed240fa1f9f828bd13a4401a9a;p=mesa.git gallium: Fix build on Windows. --- 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,