From: Po Lu Date: Wed, 1 May 2024 04:03:26 +0000 (+0800) Subject: ; * src/androidselect.c (extract_fd_offsets): Fix typos. X-Git-Tag: archive/raspbian/1%30.1+1-3+rpi1^2~2^2~20^2~1709 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c00105626ace43919706819da4057a358e62bafe;p=emacs.git ; * src/androidselect.c (extract_fd_offsets): Fix typos. --- diff --git a/src/androidselect.c b/src/androidselect.c index 04d04d326d9..d9c35746f11 100644 --- a/src/androidselect.c +++ b/src/androidselect.c @@ -457,9 +457,9 @@ extract_fd_offsets (jobject afd, int *fd, jlong *offset, jlong *length) RTLD_LAZY | RTLD_GLOBAL); if (!handle) goto failure; - jniGetFdFromFileDescriptor = dlsym (handle, + jniGetFDFromFileDescriptor = dlsym (handle, "jniGetFDFromFileDescriptor"); - if (!jniGetFdFromFileDescriptor) + if (!jniGetFDFromFileDescriptor) goto failure; }