Remove uneeded cast to int that causes compiler error

This commit is contained in:
Allen Garvey 2017-02-09 20:44:53 -05:00
parent 5e7b6a75e1
commit 72bd2ed6ee
1 changed files with 1 additions and 1 deletions

2
jpeg.d
View File

@ -1023,7 +1023,7 @@ private:
}
if (!rv)
{
int capacity = JPGD_MAX(32768 - 256, (nSize + 2047) & ~2047);
size_t capacity = JPGD_MAX(32768 - 256, (nSize + 2047) & ~2047);
mem_block *b = cast(mem_block*)jpgd_malloc(mem_block.sizeof + capacity);
if (!b) { stop_decoding(JPGD_NOTENOUGHMEM); }
b.m_pNext = m_pMem_blocks; m_pMem_blocks = b;