mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-13 05:06:49 +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. */
|
/* 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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user