]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/android.c (android_run_select_thread): Fix typo.
authorPo Lu <luangruo@yahoo.com>
Wed, 12 Jul 2023 09:04:35 +0000 (17:04 +0800)
committerPo Lu <luangruo@yahoo.com>
Wed, 12 Jul 2023 09:04:35 +0000 (17:04 +0800)
src/android.c

index 065f90b3463c999b07353c8ab023df9d501a180a..5eb6f65419c6f7ef88892966c5ce7a2bb3346eb6 100644 (file)
@@ -398,7 +398,7 @@ android_run_select_thread (void *data)
       if (rc != -1 && FD_ISSET (select_pipe[0], &readfds))
        {
          rc -= 1;
-         FD_CLR (fd, &readfds);
+         FD_CLR (select_pipe[0], &readfds);
 
          /* If no file descriptors aside from the select pipe are
             ready, then pretend that an error has occurred.  */