From: Brian Date: Tue, 11 Dec 2007 16:09:06 +0000 (-0700) Subject: change align_malloc() alignment to uint X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=23ca30e24bbc8390127910c64da4a321ae63ce3a;p=mesa.git change align_malloc() alignment to uint --- diff --git a/src/mesa/pipe/p_util.h b/src/mesa/pipe/p_util.h index 898459293eb..b4d1195c9b0 100644 --- a/src/mesa/pipe/p_util.h +++ b/src/mesa/pipe/p_util.h @@ -117,11 +117,10 @@ REALLOC( void *old_ptr, unsigned old_size, unsigned new_size ) * Return memory on given byte alignment */ static INLINE void * -align_malloc(size_t bytes, unsigned long alignment) +align_malloc(size_t bytes, uint alignment) { #if defined(HAVE_POSIX_MEMALIGN) void *mem; - (void) posix_memalign(& mem, alignment, bytes); return mem; #else