mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-12 22:25:59 -04:00
Windows: cast _allocas/mallocs, update DLL version, props Pierre Y.
This commit is contained in:
parent
a775e66f3f
commit
34d3319cc6
6 changed files with 11 additions and 11 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue