1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-18 20:00:36 -08:00

* coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.

This avoids several warnings with gcc -Wstrict-overflow.
This commit is contained in:
Paul Eggert 2011-04-04 23:24:54 -07:00
parent 625a3eb1e2
commit b25d760e18
2 changed files with 5 additions and 2 deletions

View file

@ -753,7 +753,7 @@ static struct coding_system coding_categories[coding_category_max];
produced_chars++; \
if (multibytep) \
{ \
int ch = (c); \
unsigned ch = (c); \
if (ch >= 0x80) \
ch = BYTE8_TO_CHAR (ch); \
CHAR_STRING_ADVANCE (ch, dst); \
@ -770,7 +770,7 @@ static struct coding_system coding_categories[coding_category_max];
produced_chars += 2; \
if (multibytep) \
{ \
int ch; \
unsigned ch; \
\
ch = (c1); \
if (ch >= 0x80) \