diff options
| author | Richard M. Stallman | 1995-01-16 06:48:15 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-01-16 06:48:15 +0000 |
| commit | 569f49447b54f975fa5a4d231ee12c809ca83de2 (patch) | |
| tree | a2df6e6fc3090335ac8176656e58790f7d736f31 /src/keyboard.c | |
| parent | 187996a8fd5712f7afc512b072edee55cdfe4a7f (diff) | |
| download | emacs-569f49447b54f975fa5a4d231ee12c809ca83de2.tar.gz emacs-569f49447b54f975fa5a4d231ee12c809ca83de2.zip | |
(kbd_buffer_store_event): Cast arg of bcopy.
Diffstat (limited to 'src/keyboard.c')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 2080 | /* We must not use the ordinary copying code for this case, | 2080 | /* We must not use the ordinary copying code for this case, |
| 2081 | since `part' is an enum and copying it might not copy enough | 2081 | since `part' is an enum and copying it might not copy enough |
| 2082 | in this case. */ | 2082 | in this case. */ |
| 2083 | bcopy (event, kbd_store_ptr, sizeof (*event)); | 2083 | bcopy (event, (char *) kbd_store_ptr, sizeof (*event)); |
| 2084 | } | 2084 | } |
| 2085 | else | 2085 | else |
| 2086 | { | 2086 | { |