mirror of
https://git.code.sf.net/p/zint/code
synced 2025-12-18 18:37:07 +00:00
Mode C bugfix
This commit is contained in:
@@ -195,7 +195,7 @@ int code16k(struct zint_symbol *symbol, unsigned char source[])
|
||||
|
||||
/* Resolve odd length LATCHC blocks */
|
||||
if((list[1][0] == LATCHC) && ((list[0][0] % 2) == 1)) {
|
||||
for(i = 1; i <= indexliste; i++) {
|
||||
for(i = indexliste; i > 0; i--) {
|
||||
list[0][i] = list[0][i - 1];
|
||||
list[1][i] = list[1][i - 1];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user