1
0
Fork 0
mirror of https://git.code.sf.net/p/zint/code synced 2025-06-02 07:59:50 -04: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:
gitlost 2025-02-16 16:05:21 +00:00
parent f9878700ee
commit 33135fc146
4 changed files with 6 additions and 10 deletions

View file

@ -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);