Commit 48253bd84ee24182dd8a1e236094eb8649da3b54

Authored by malc
1 parent a7812ae4

Use qemu_memalign instead of memalign in qemu_vmalloc

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5730 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
... ... @@ -200,7 +200,7 @@ void *qemu_vmalloc(size_t size)
200 200 #ifdef _BSD
201 201 return valloc(size);
202 202 #else
203   - return memalign(getpagesize(), size);
  203 + return qemu_memalign(getpagesize(), size);
204 204 #endif
205 205 }
206 206  
... ...