mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-28 05:54:19 -04:00
Correct reader init bug in Code 128
This commit is contained in:
parent
3ed1b5692f
commit
7409399438
1 changed files with 1 additions and 1 deletions
|
@ -509,7 +509,7 @@ int code_128(struct zint_symbol *symbol, unsigned char source[], const size_t le
|
|||
break;
|
||||
case 'C': /* Start C */
|
||||
strcat(dest, C128Table[104]); /* Start B */
|
||||
values[0] = 105;
|
||||
values[0] = 104;
|
||||
strcat(dest, C128Table[96]); /* FNC3 */
|
||||
values[1] = 96;
|
||||
strcat(dest, C128Table[99]); /* Code C */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue