mesa: silence warning from gcc 4.4.1

This commit is contained in:
Brian Paul 2009-11-04 17:42:01 -07:00
parent 60c328db2d
commit 76aa0c0fd3

View file

@ -108,8 +108,8 @@ _mesa_align_malloc(size_t bytes, unsigned long alignment)
{
#if defined(HAVE_POSIX_MEMALIGN)
void *mem;
(void) posix_memalign(& mem, alignment, bytes);
int err = posix_memalign(& mem, alignment, bytes);
(void) err;
return mem;
#elif defined(_WIN32) && defined(_MSC_VER)
return _aligned_malloc(bytes, alignment);