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

* coding.c (produce_chars): Use ptrdiff_t, not int.

This commit is contained in:
Paul Eggert 2012-06-17 00:57:28 -07:00
parent 9a900ca947
commit 27bb1ca4b0
2 changed files with 4 additions and 1 deletions

View file

@ -6765,7 +6765,8 @@ produce_chars (struct coding_system *coding, Lisp_Object translation_table,
while (buf < buf_end)
{
int c = *buf, i;
int c = *buf;
ptrdiff_t i;
if (c >= 0)
{