fix visual c compiler

This commit is contained in:
Alexander 2017-09-17 22:46:11 +03:00
parent 8659cd7564
commit 53dde3b7f6

View File

@ -265,13 +265,12 @@ ImagingDelete(Imaging im)
/* Allocate image as an array of line buffers. */ /* Allocate image as an array of line buffers. */
struct ImagingMemoryArena ImagingDefaultArena = { struct ImagingMemoryArena ImagingDefaultArena = {
.alignment = 1, 1, // alignment
.block_size = 1024*1024, 1*1024*1024, // block_size
.blocks_max = 0, 0, // blocks_max
.blocks_free = 0, 0, // blocks_free
.blocks = NULL, NULL, // blocks
// Stats 0, 0, 0, 0, 0 // Stats
0, 0, 0, 0, 0
}; };
void void