diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2022-02-06 16:04:24 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2022-02-06 16:04:24 +0100 |
commit | 5d2c2b27a6323e2666378b986129b2a7c2c39e5c (patch) | |
tree | ce8982b6c0111f79791068de2c2d4c6ce3138a49 /app/tools/halibut/charset/iso2022.c | |
parent | b623f5953691b2a0614e6f1f4def86bdbb9a4113 (diff) |
New upstream version 5.2.2GAupstream/5.2.2GA
Diffstat (limited to 'app/tools/halibut/charset/iso2022.c')
-rw-r--r-- | app/tools/halibut/charset/iso2022.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/tools/halibut/charset/iso2022.c b/app/tools/halibut/charset/iso2022.c index 8cf3c25..b0492d9 100644 --- a/app/tools/halibut/charset/iso2022.c +++ b/app/tools/halibut/charset/iso2022.c @@ -879,7 +879,7 @@ static void docs_char(charset_state *state, emit(emitctx, '/'); emit(emitctx, '0' + ctext_encodings[curr_cset].octets_per_char); len = currlen + datalen + - strlen(ctext_encodings[curr_cset].name); + (int)strlen(ctext_encodings[curr_cset].name); assert(len < (1 << 14)); emit(emitctx, 0x80 | ((len >> 7) & 0x7F)); emit(emitctx, 0x80 | ((len ) & 0x7F)); @@ -964,7 +964,7 @@ static void docs_char(charset_state *state, static void write_to_pointer(void *ctx, long int output) { char **ptr = (char **)ctx; - *(*ptr)++ = output; + *(*ptr)++ = (char)output; } /* @@ -1195,7 +1195,7 @@ static int write_iso2022(charset_spec const *charset, long int input_chr, } if (cs != -2) { - docs_char(state, emit, emitctx, cs, data, p - data); + docs_char(state, emit, emitctx, cs, data, (int)(p - data)); return TRUE; } } |