diff options
| author | Po Lu | 2023-06-23 11:39:57 +0800 |
|---|---|---|
| committer | Po Lu | 2023-06-23 11:39:57 +0800 |
| commit | 866a937540c090ff7b740d7732e46c2e8b30a36d (patch) | |
| tree | 368e0b6b2fdd92489f254553a960e24506324f1f /src/android.c | |
| parent | 1a19ebdd28f5ba5840d5e2d713098df7bcb13385 (diff) | |
| download | emacs-866a937540c090ff7b740d7732e46c2e8b30a36d.tar.gz emacs-866a937540c090ff7b740d7732e46c2e8b30a36d.zip | |
; * src/android.c (android_wc_lookup_string): Fix typo.
Diffstat (limited to 'src/android.c')
| -rw-r--r-- | src/android.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android.c b/src/android.c index ff78e4c289a..e45aa82fc3c 100644 --- a/src/android.c +++ b/src/android.c | |||
| @@ -5827,7 +5827,7 @@ android_wc_lookup_string (android_key_pressed_event *event, | |||
| 5827 | /* Now return this input method string. */ | 5827 | /* Now return this input method string. */ |
| 5828 | characters = (*android_java_env)->GetStringChars (android_java_env, | 5828 | characters = (*android_java_env)->GetStringChars (android_java_env, |
| 5829 | string, NULL); | 5829 | string, NULL); |
| 5830 | android_exception_check_nonnull (characters, string); | 5830 | android_exception_check_nonnull ((void *) characters, string); |
| 5831 | 5831 | ||
| 5832 | /* Figure out how big the string is. */ | 5832 | /* Figure out how big the string is. */ |
| 5833 | size = (*android_java_env)->GetStringLength (android_java_env, | 5833 | size = (*android_java_env)->GetStringLength (android_java_env, |