]> git.eshelyaron.com Git - emacs.git/commitdiff
Update Android port
authorPo Lu <luangruo@yahoo.com>
Thu, 20 Jul 2023 11:49:47 +0000 (19:49 +0800)
committerPo Lu <luangruo@yahoo.com>
Thu, 20 Jul 2023 11:49:47 +0000 (19:49 +0800)
* src/android.c (struct android_event_queue): Don't make
unnecessarily volatile.

src/android.c

index f2e5e75d35e0edee74b4ac08b604a5e3ea315122..1662160bdd9b040c7f2a7df474bbe8d211f72546 100644 (file)
@@ -306,7 +306,7 @@ struct android_event_queue
 
   /* The number of events in the queue.  If this is greater than 1024,
      writing will block.  */
-  volatile int num_events;
+  int num_events;
 
   /* Circular queue of events.  */
   struct android_event_container events;