mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-28 22:14:19 -04:00
CODE39/PLESSEY/POSTNET/PLANET/TELEPEN: suppress MSVC6 warning C4761
(`hrt_cat_chr_nochk(`))
This commit is contained in:
parent
d9aebc1c72
commit
f747de3684
4 changed files with 14 additions and 11 deletions
|
@ -140,7 +140,7 @@ INTERNAL int telepen(struct zint_symbol *symbol, unsigned char source[], int len
|
|||
|
||||
hrt_cpy_iso8859_1(symbol, source, length);
|
||||
if (raw_text) {
|
||||
hrt_cat_chr_nochk(symbol, check_digit);
|
||||
hrt_cat_chr_nochk(symbol, (char) check_digit);
|
||||
}
|
||||
|
||||
return error_number;
|
||||
|
@ -219,7 +219,7 @@ INTERNAL int telepen_num(struct zint_symbol *symbol, unsigned char source[], int
|
|||
|
||||
hrt_cpy_nochk(symbol, local_source, length);
|
||||
if (raw_text) {
|
||||
hrt_cat_chr_nochk(symbol, check_digit);
|
||||
hrt_cat_chr_nochk(symbol, (char) check_digit);
|
||||
}
|
||||
|
||||
return error_number;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue