mirror of
https://git.code.sf.net/p/zint/code
synced 2026-01-27 22:05:57 +00:00
upcean: BARCODE_RAW_TEST: need "+" separator for add-ons, else can't
differentiate between EAN-13 and EAN-8 + EAN-5 cli: append "Ital. Pharma" to Code 32 description dxfilmedge: code fiddle
This commit is contained in:
@@ -160,8 +160,8 @@ static int dx_parse_code(struct zint_symbol *symbol, const unsigned char *source
|
||||
dx_extract);
|
||||
}
|
||||
if (debug_print) printf("Computed DX extract: %04d\n", dx_extract);
|
||||
dx_code_1 = dx_extract / 16;
|
||||
dx_code_2 = dx_extract % 16;
|
||||
dx_code_1 = dx_extract >> 4;
|
||||
dx_code_2 = dx_extract & 0xF;
|
||||
}
|
||||
|
||||
if (debug_print) {
|
||||
|
||||
Reference in New Issue
Block a user