aboutsummaryrefslogtreecommitdiffstats
path: root/src/android.c
diff options
context:
space:
mode:
authorPo Lu2023-07-12 17:04:35 +0800
committerPo Lu2023-07-12 17:04:35 +0800
commit43d6c2bddc1319e217cce196741c6181fd0ff9dd (patch)
tree268ef0b833c765844bcf9aa7db6bc345b5f67d6d /src/android.c
parent3e6eaa3cb2eea00d83561458d8eb1e24b77d28cb (diff)
downloademacs-43d6c2bddc1319e217cce196741c6181fd0ff9dd.tar.gz
emacs-43d6c2bddc1319e217cce196741c6181fd0ff9dd.zip
; * src/android.c (android_run_select_thread): Fix typo.
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 065f90b3463..5eb6f65419c 100644
--- a/src/android.c
+++ b/src/android.c
@@ -398,7 +398,7 @@ android_run_select_thread (void *data)
398 if (rc != -1 && FD_ISSET (select_pipe[0], &readfds)) 398 if (rc != -1 && FD_ISSET (select_pipe[0], &readfds))
399 { 399 {
400 rc -= 1; 400 rc -= 1;
401 FD_CLR (fd, &readfds); 401 FD_CLR (select_pipe[0], &readfds);
402 402
403 /* If no file descriptors aside from the select pipe are 403 /* If no file descriptors aside from the select pipe are
404 ready, then pretend that an error has occurred. */ 404 ready, then pretend that an error has occurred. */