aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
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 {