diff options
| author | Derrick Owens <derrick.owens@amd.com> | 2016-01-21 14:50:13 -0500 |
|---|---|---|
| committer | Mark Young <marky@lunarg.com> | 2016-01-26 09:30:32 -0700 |
| commit | 1a606ac5f6ef43e8612107da47199b308f225a0b (patch) | |
| tree | c2610c840d5c00458e358eb739ba2bc7690f6c99 | |
| parent | 445e594fe703ecc180f958368ee11ca6b0abf4b2 (diff) | |
| download | usermoji-1a606ac5f6ef43e8612107da47199b308f225a0b.tar.xz | |
fixed typo
| -rw-r--r-- | demos/tri.c | 2 |
1 files changed, 1 insertions, 1 deletions
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( |
