1
0
mirror of https://git.code.sf.net/p/zint/code synced 2025-12-21 11:57:04 +00:00

CODE39/PLESSEY/POSTNET/PLANET/TELEPEN: suppress MSVC6 warning C4761

(`hrt_cat_chr_nochk(`))
This commit is contained in:
gitlost
2025-02-24 18:12:12 +00:00
parent d9aebc1c72
commit f747de3684
4 changed files with 14 additions and 11 deletions

View File

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