mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-12 22:25:59 -04:00
Fix separator pattern for composite GS1-128
This commit is contained in:
parent
3b12f14bad
commit
bae63db6b4
1 changed files with 1 additions and 1 deletions
|
@ -871,7 +871,7 @@ int ean_128(struct zint_symbol *symbol, unsigned char source[])
|
|||
/* Add the separator pattern for composite symbols */
|
||||
if(symbol->symbology == BARCODE_EAN128_CC) {
|
||||
for(i = 0; i < symbol->width; i++) {
|
||||
if(module_is_set(symbol, separator_row + 1, i)) {
|
||||
if(!(module_is_set(symbol, separator_row + 1, i))) {
|
||||
set_module(symbol, separator_row, i);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue