From: Richard M. Stallman Date: Mon, 16 Jan 1995 06:48:15 +0000 (+0000) Subject: (kbd_buffer_store_event): Cast arg of bcopy. X-Git-Tag: emacs-19.34~5425 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=569f49447b54f975fa5a4d231ee12c809ca83de2;p=emacs.git (kbd_buffer_store_event): Cast arg of bcopy. --- diff --git a/src/keyboard.c b/src/keyboard.c index 520d88a3f94..8dde43e59b8 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -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 {