mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Windows: cast _allocas/mallocs, update DLL version, props Pierre Y.
This commit is contained in:
@ -309,7 +309,7 @@ INTERNAL int gif_pixel_plot(struct zint_symbol *symbol, char *pixelbuf) {
|
||||
#ifndef _MSC_VER
|
||||
char lzwoutbuf[lzoutbufSize];
|
||||
#else
|
||||
lzwoutbuf = _alloca(lzoutbufSize);
|
||||
lzwoutbuf = (char *) _alloca(lzoutbufSize);
|
||||
#endif /* _MSC_VER */
|
||||
|
||||
/* Open output file in binary mode */
|
||||
|
Reference in New Issue
Block a user