From 1a606ac5f6ef43e8612107da47199b308f225a0b Mon Sep 17 00:00:00 2001 From: Derrick Owens Date: Thu, 21 Jan 2016 14:50:13 -0500 Subject: fixed typo --- demos/tri.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/tri.c b/demos/tri.c index 74072381..815220e1 100644 --- a/demos/tri.c +++ b/demos/tri.c @@ -1734,7 +1734,7 @@ VKAPI_ATTR void* VKAPI_CALL myalloc( #ifdef _MSC_VER return _aligned_malloc(size, alignment); #else - return aligned_malloc(alignment, size); + return aligned_alloc(alignment, size); #endif } VKAPI_ATTR void VKAPI_CALL myfree( -- cgit v1.2.3