mirror of
https://git.code.sf.net/p/zint/code
synced 2025-12-20 03:17:12 +00:00
Make compile with MSVC6++
This commit is contained in:
@@ -290,7 +290,7 @@ int get_best_eci(unsigned char source[], int length) {
|
||||
#ifndef _MSC_VER
|
||||
unsigned char local_source[length + 1];
|
||||
#else
|
||||
local_source = (unsigned char*) _alloca(length + 1);
|
||||
unsigned char *local_source = (unsigned char*) _alloca(length + 1);
|
||||
#endif
|
||||
|
||||
do {
|
||||
|
||||
Reference in New Issue
Block a user