diff options
| author | Po Lu | 2024-05-01 12:03:26 +0800 |
|---|---|---|
| committer | Po Lu | 2024-05-01 12:03:26 +0800 |
| commit | c00105626ace43919706819da4057a358e62bafe (patch) | |
| tree | a9beab980f01b8d162e5f85d77b5f04a08e06acc /src | |
| parent | 2451456695d0e03b89365cbbe64effb2f99af2d5 (diff) | |
| download | emacs-c00105626ace43919706819da4057a358e62bafe.tar.gz emacs-c00105626ace43919706819da4057a358e62bafe.zip | |
; * src/androidselect.c (extract_fd_offsets): Fix typos.
Diffstat (limited to 'src')
| -rw-r--r-- | src/androidselect.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) | |||
| 457 | RTLD_LAZY | RTLD_GLOBAL); | 457 | RTLD_LAZY | RTLD_GLOBAL); |
| 458 | if (!handle) | 458 | if (!handle) |
| 459 | goto failure; | 459 | goto failure; |
| 460 | jniGetFdFromFileDescriptor = dlsym (handle, | 460 | jniGetFDFromFileDescriptor = dlsym (handle, |
| 461 | "jniGetFDFromFileDescriptor"); | 461 | "jniGetFDFromFileDescriptor"); |
| 462 | if (!jniGetFdFromFileDescriptor) | 462 | if (!jniGetFDFromFileDescriptor) |
| 463 | goto failure; | 463 | goto failure; |
| 464 | } | 464 | } |
| 465 | 465 | ||