1
0
Fork 0
mirror of https://git.code.sf.net/p/zint/code synced 2025-05-30 23:05:23 -04:00

Fixes for eci, binary div, upce, other

This commit is contained in:
gitlost 2019-09-01 20:23:15 +01:00
parent 89c2ee6f1d
commit d76cdd615b
11 changed files with 80 additions and 100 deletions
backend

View file

@ -173,7 +173,7 @@ short int islarger(short int accum[], short int reg[]) {
latch = 1;
}
i--;
} while ((latch == 0) && (i >= -1));
} while ((latch == 0) && (i >= 0));
return larger;
}