1
0
Fork 0
mirror of https://git.code.sf.net/p/zint/code synced 2025-05-25 20:44:29 -04:00

MSVC corrections thanks to Norbert Szabó

This commit is contained in:
hooper114 2009-08-06 18:48:42 +00:00
parent 22dec4892c
commit 776154d3fe
7 changed files with 29 additions and 26 deletions
backend

View file

@ -375,13 +375,13 @@ int c93(struct zint_symbol *symbol, unsigned char source[])
int h, weight, c, k, values[100], error_number;
char buffer[100], temp[2];
char set_copy[] = TCSET;
strcpy(buffer, "");
int ascii_value;
char dest[1000];
unsigned char local_source[47];
error_number = 0;
strcpy(dest, "");
strcpy(buffer, "");
strcpy(dest, "");
ustrcpy(local_source, source);
@ -597,4 +597,4 @@ int channel_code(struct zint_symbol *symbol, unsigned char source[]) {
expand(symbol, pattern);
return error_number;
}
}