my_large_malloc: style fix

This commit is contained in:
Daniel Black 2020-04-06 12:07:34 +10:00 committed by Sergey Vojtovich
parent 2c00502014
commit 5e86b2eec8

View file

@ -260,10 +260,10 @@ MAP_ANON but MAP_ANONYMOUS is marked "for compatibility" */
my_malloc_lock() in case of failure.
Every implementation returns a zero filled buffer here.
*/
uchar* my_large_malloc(size_t *size, myf my_flags)
uchar *my_large_malloc(size_t *size, myf my_flags)
{
uchar* ptr= NULL;
uchar *ptr= NULL;
#ifdef _WIN32
DWORD alloc_type= MEM_COMMIT | MEM_RESERVE;
size_t orig_size= *size;