* insdel.c: conform to C89 pointer rules

This commit is contained in:
Paul Eggert 2011-02-06 11:44:36 -08:00
parent f8b351c190
commit b68864e5b9
10 changed files with 46 additions and 42 deletions

View file

@ -7880,7 +7880,7 @@ encode_coding_object (struct coding_system *coding,
else if (BUFFERP (src_object))
insert_from_buffer (XBUFFER (src_object), from, chars, 0);
else
insert_1_both (coding->source + from, chars, bytes, 0, 0, 0);
insert_1_both ((char *) coding->source + from, chars, bytes, 0, 0, 0);
if (EQ (src_object, dst_object))
{