mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
fix visual c compiler
This commit is contained in:
parent
8659cd7564
commit
53dde3b7f6
|
@ -265,13 +265,12 @@ ImagingDelete(Imaging im)
|
|||
/* Allocate image as an array of line buffers. */
|
||||
|
||||
struct ImagingMemoryArena ImagingDefaultArena = {
|
||||
.alignment = 1,
|
||||
.block_size = 1024*1024,
|
||||
.blocks_max = 0,
|
||||
.blocks_free = 0,
|
||||
.blocks = NULL,
|
||||
// Stats
|
||||
0, 0, 0, 0, 0
|
||||
1, // alignment
|
||||
1*1024*1024, // block_size
|
||||
0, // blocks_max
|
||||
0, // blocks_free
|
||||
NULL, // blocks
|
||||
0, 0, 0, 0, 0 // Stats
|
||||
};
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in New Issue
Block a user