From: Po Lu Date: Wed, 12 Jul 2023 09:04:35 +0000 (+0800) Subject: ; * src/android.c (android_run_select_thread): Fix typo. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=43d6c2bddc1319e217cce196741c6181fd0ff9dd;p=emacs.git ; * src/android.c (android_run_select_thread): Fix typo. --- 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) 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. */