aboutsummaryrefslogtreecommitdiffstats
path: root/src/android.c
diff options
context:
space:
mode:
authorPo Lu2023-07-20 19:49:47 +0800
committerPo Lu2023-07-20 19:49:47 +0800
commit353f90c7584497ff6525c44d31263896f02a43d4 (patch)
tree5de4b55cc4ee7c3ee05da6d56d0b1b412eb65300 /src/android.c
parentb5121503e4d27e1d0b18f1e115708c37437d60e9 (diff)
downloademacs-353f90c7584497ff6525c44d31263896f02a43d4.tar.gz
emacs-353f90c7584497ff6525c44d31263896f02a43d4.zip
Update Android port
* src/android.c (struct android_event_queue): Don't make unnecessarily volatile.
Diffstat (limited to 'src/android.c')
-rw-r--r--src/android.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android.c b/src/android.c
index f2e5e75d35e..1662160bdd9 100644
--- a/src/android.c
+++ b/src/android.c
@@ -306,7 +306,7 @@ struct android_event_queue
306 306
307 /* The number of events in the queue. If this is greater than 1024, 307 /* The number of events in the queue. If this is greater than 1024,
308 writing will block. */ 308 writing will block. */
309 volatile int num_events; 309 int num_events;
310 310
311 /* Circular queue of events. */ 311 /* Circular queue of events. */
312 struct android_event_container events; 312 struct android_event_container events;