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:
parent
9a900ca947
commit
27bb1ca4b0
2 changed files with 4 additions and 1 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue