1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-01 09:51:22 -08:00

(kbd_buffer_store_event): Cast arg of bcopy.

This commit is contained in:
Richard M. Stallman 1995-01-16 06:48:15 +00:00
parent 187996a8fd
commit 569f49447b

View file

@ -2080,7 +2080,7 @@ kbd_buffer_store_event (event)
/* We must not use the ordinary copying code for this case,
since `part' is an enum and copying it might not copy enough
in this case. */
bcopy (event, kbd_store_ptr, sizeof (*event));
bcopy (event, (char *) kbd_store_ptr, sizeof (*event));
}
else
{