[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
feature/android 353f90c7584 1/4: Update Android port
|
From: |
Po Lu |
|
Subject: |
feature/android 353f90c7584 1/4: Update Android port |
|
Date: |
Thu, 20 Jul 2023 08:07:50 -0400 (EDT) |
branch: feature/android
commit 353f90c7584497ff6525c44d31263896f02a43d4
Author: Po Lu <luangruo@yahoo.com>
Commit: Po Lu <luangruo@yahoo.com>
Update Android port
* src/android.c (struct android_event_queue): Don't make
unnecessarily volatile.
---
src/android.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
/* 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;