mirror of
https://git.code.sf.net/p/zint/code
synced 2025-12-17 18:07:02 +00:00
DXFILMEDGE: suppress gcc warning -Wmaybe-uninitialized
CMakeFile: don't disable -fno-var-tracking-assignments for gcc github: try installing de_DE.UTF-8 locale (for test_filemem)
This commit is contained in:
@@ -188,11 +188,7 @@ INTERNAL int dpd(struct zint_symbol *symbol, unsigned char source[], int length)
|
||||
cd = mod + 1 - cd;
|
||||
if (cd == mod) cd = 0;
|
||||
|
||||
if (cd < 10) {
|
||||
hrt[p] = cd + '0';
|
||||
} else {
|
||||
hrt[p] = (cd - 10) + 'A';
|
||||
}
|
||||
hrt[p] = xtoc(cd);
|
||||
|
||||
hrt_cpy_nochk(symbol, hrt, p + 1);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user